newest quantum CVS sources
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / model / Bookmark.java
index 3ee61be..a4a50e8 100644 (file)
@@ -29,7 +29,7 @@ import org.eclipse.jface.preference.IPreferenceStore;
  * 
  * @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;
@@ -540,4 +540,8 @@ public class Bookmark {
             this.propertyChangeSupport.firePropertyChange("schemas", null, null);
         }
        }
+
+       public String getDisplayName() {
+               return this.name;
+       }
 }