*
* @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;
setPromptForPassword(data.getPromptForPassword());
setAutoCommit(data.isAutoCommit());
setAutoCommitPreference(data.getAutoCommitPreference());
+ setSchemaRule(data.getSchemaRule());
this.schemas.addAll(data.schemas);
this.quickList = new Hashtable(data.quickList);
this.propertyChangeSupport.firePropertyChange("schemas", null, null);
}
}
+
+ public String getDisplayName() {
+ return this.name;
+ }
}