Revision 20100 branches/v10/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 least 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 with more particular
50
 *  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
	/**
......
65 62
	}
66 63

  
67 64
	/**
68
	 * <p>Sets the type of the event to the specified number.</p>
65
	 * <p>Sets the type of the event.</p>
69 66
	 * 
70
	 * @param eventType the number that is to be this type's event
67
	 * @param eventType the number that identifies this event's type
71 68
	 */
72 69
	public void setEventType(int eventType) {
73 70
		this.eventType = eventType;

Also available in: Unified diff