*
* @author root
*/
-public class Bookmark {
+public class Bookmark implements Displayable {
public static final int SCHEMA_RULE_USE_ALL = 1;
public static final int SCHEMA_RULE_USE_DEFAULT = 2;
this.propertyChangeSupport.firePropertyChange("schemas", null, null);
}
}
+
+ public String getDisplayName() {
+ return this.name;
+ }
}