Revision 20100 branches/v10/libraries/libFMap/src/com/iver/cit/gvsig/fmap/rendering/SymbolLegendEvent.java

View differences:

SymbolLegendEvent.java
42 42

  
43 43
import com.iver.cit.gvsig.fmap.rendering.styling.FStyle2D;
44 44

  
45

  
46 45
/**
47
 * Evento de cambio de un simbolo en la leyenda.
46
 * <p>Event produced when changes one of the symbols of a classified legend.</p>
48 47
 */
49 48
public class SymbolLegendEvent extends ClassificationLegendEvent {
49
	/**
50
	 * <p>Previous symbol style.</p>
51
	 */
50 52
	private FStyle2D oldValue;
53
	
54
	/**
55
	 * <p>New symbol style.</p>
56
	 */
51 57
	private FStyle2D newValue;
52 58

  
53 59
	/**
54
	 * Crea un nuevo SymbolLegendEvent.
60
	 * <p>Creates a new symbol legend event.</p>
55 61
	 *
56
	 * @param oldValue Antiguo s?mbolo.
57
	 * @param newValue Nuevo s?mbolo.
62
	 * @param oldValue previous symbol style
63
	 * @param newValue new symbol style
58 64
	 */
59 65
	public SymbolLegendEvent(FStyle2D oldValue, FStyle2D newValue) {
60 66
		this.oldValue = oldValue;
......
62 68
	}
63 69

  
64 70
	/**
65
	 * Devuelve el antiguo s?mbolo.
71
	 * <p>Gets the previous symbol style.</p>
66 72
	 *
67
	 * @return Antiguo s?mbolo.
73
	 * @return the previous symbol style
68 74
	 */
69 75
	public FStyle2D getOldValue() {
70 76
		return oldValue;
71 77
	}
72 78

  
73 79
	/**
74
	 * Devuelve el nuevo s?mbolo.
80
	 * <p>Gets the new symbol style.</p>
75 81
	 *
76
	 * @return Nuevo s?mbolo.
82
	 * @return the new symbol style
77 83
	 */
78 84
	public FStyle2D getNewValue() {
79 85
		return newValue;

Also available in: Unified diff