Revision 44871 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.api/src/main/java/org/gvsig/fmap/dal/DataStoreNotification.java

View differences:

DataStoreNotification.java
23 23
 */
24 24
package org.gvsig.fmap.dal;
25 25

  
26
import org.gvsig.tools.observer.Notification;
27

  
26 28
/**
27 29
 * This interface represents a notification produced by a DataStore.
28 30
 * 
......
30 32
 * of constants that represent the types of notifications that a DataStore 
31 33
 * can produce.
32 34
 */
33
public interface DataStoreNotification {
35
public interface DataStoreNotification extends Notification {
34 36

  
35 37
	/** Complex notification for special situations */
36 38
	public static final String COMPLEX_NOTIFICATION = "complex_notification";
......
65 67
	 */
66 68
	public DataStore getSource();
67 69
	
68
	/**
69
	 * Returns the type of this notification, represented by one of the constants defined in this interface.
70
	 * @return a String containing this notification's type
71
	 */
72
	public String getType();
73

  
74 70
}

Also available in: Unified diff