Revision 14200

View differences:

trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/rendering/ILegend.java
49 49
/**
50 50
 * Informaci?n sobre la leyenda para la representaci?n en la interfaz
51 51
 */
52
public interface ILegend extends IPersistence {
52
public interface ILegend extends IPersistence{
53 53
	/**
54 54
	 * Obtiene el s?mbolo por defecto de la leyenda
55 55
	 *
56 56
	 * @return S?mbolo por defecto.
57 57
	 */
58
	public ISymbol getDefaultSymbol();
58
	ISymbol getDefaultSymbol();
59 59

  
60 60

  
61 61
	/**
......
65 65
	 *
66 66
	 * @throws DriverException
67 67
	 */
68
	public String getSLDString(String layerName);
68
	String getSLDString(String layerName);
69 69

  
70 70

  
71 71
	/**
......
76 76
	 * @throws XMLException
77 77
	 * @throws DriverException
78 78
	 */
79
	public ILegend cloneLegend() throws XMLException;
79
	ILegend cloneLegend() throws XMLException;
80

  
81
	void addLegendListener(LegendListener listener);
82
	
83
	public void removeLegendListener(LegendListener listener);
84

  
85
	public void fireDefaultSymbolChangedEvent(SymbolLegendEvent event);
86
	
87
	public LegendListener[] getListeners();
80 88
}
89

  

Also available in: Unified diff