import java.util.Iterator;
import java.util.Vector;
-import com.quantum.QuantumPlugin;
+import com.quantum.ImageStore;
import com.quantum.model.Bookmark;
import com.quantum.model.BookmarkHolder;
import com.quantum.model.NotConnectedException;
* @return an Image object to appear in the view, null if not found
*/
public Image getImage() {
- return QuantumPlugin.getImage(getImageName());
+ return ImageStore.getImage(getImageName());
}
/**
*/
public int compareTo(Object object) {
TreeNode that = (TreeNode) object;
- return this.getLabelName().compareTo(that.getLabelName());
+ return this.getLabelName().toLowerCase().compareTo(that.getLabelName().toLowerCase());
}
public String toString() {