Revision 16185 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/rendering/ClassificationLegendEvent.java

View differences:

ClassificationLegendEvent.java
42 42

  
43 43
import com.iver.cit.gvsig.fmap.layers.LegendEvent;
44 44

  
45

  
46 45
/**
47
 * Evento sobre la Leyenda clasificada.
46
 * <p>The class <code>ClassificationLegendEvent</code> stores all necessary information of an event 
47
 * produced on a classification legend.</p>
48 48
 *
49
 * @author Vicente Caballero Navarro
49
 * @author jaume domimguez faus - jaume.dominguez@iver.es
50 50
 */
51 51
public class ClassificationLegendEvent extends LegendEvent {
52 52
	/**
53
	 * ?ndice de la clase dentro de la clasificaci?n que ha cambiado
53
	 * Index of the class inside the classification that has changed.
54 54
	 *
55
	 * @return ?ndice.
55
	 * @return Index.
56 56
	 */
57 57
	public int getClassIndex() {
58 58
		//TODO Implementar bien
59 59
		return -1;
60 60
	}
61
}
61
	/**
62
	 * Returns the type of the event.
63
	 */
64
	public int getEventType() {
65
		return LegendEvent.LEGEND_CLASSIFICATION_CHANGED;
66
	}
67
}

Also available in: Unified diff