Revision 20098 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/FMapEvent.java

View differences:

FMapEvent.java
43 43
/**
44 44
 * <p>All events produced on a layer must be of a particular type.</p>
45 45
 *
46
 * <p>The <code>FMapEvent</code> class allows work with the last information that can have an event
47
 *  produced on a layer, its type.</p>
48
 *  
49
 * <p><code>FMapEvent</code> follows the <i>FMap event philosophy</i>; that allows to have its own events 
50
 * with more particular and specific information than with default Java events.</p>
46
 * <p><code>FMapEvent</code> defines the least information that can have an event
47
 *  produced on a layer, its <i>type</i>.</p>
51 48
 */
52 49
public class FMapEvent {
53 50
	/**
......
63 60
		return eventType;
64 61
	}
65 62
	/**
66
	 * <p>Sets the type of the event to the specified number.</p>
63
	 * <p>Sets the type of the event.</p>
67 64
	 * 
68
	 * @param eventType the number that is to be this type's event
65
	 * @param eventType the number that identifies this event's type
69 66
	 */
70 67
	public void setEventType(int eventType) {
71 68
		this.eventType = eventType;

Also available in: Unified diff