Statistics
| Revision:

svn-document-layout / trunk / org.gvsig.layout / org.gvsig.layout.app / org.gvsig.layout.app.configurablelegend / src / main / java / org / gvsig / layout / configurablelegend / impl / SingleSymbolEntry.java @ 793

History | View | Annotate | Download (500 Bytes)

1

    
2
package org.gvsig.layout.configurablelegend.impl;
3

    
4
import org.gvsig.fmap.mapcontext.rendering.legend.IClassifiedLegend;
5
import org.gvsig.fmap.mapcontext.rendering.legend.ILegend;
6
import org.gvsig.fmap.mapcontext.rendering.symbols.ISymbol;
7
import org.gvsig.layout.configurablelegend.LeafEntry;
8

    
9

    
10
public class SingleSymbolEntry         
11
        extends AbstractEntry
12
        implements LeafEntry 
13
    {
14

    
15
    public SingleSymbolEntry(ISymbol symbol, String text) {
16
        super(symbol, text);
17
    }
18
}