1 56 57 package org.objectstyle.cayenne.dataview.dvmodeler; 58 59 import java.util.*; 60 61 67 68 class ObjEntityViewsComparator implements Comparator{ 69 70 public int compare(Object a, Object b){ 71 ObjEntityView aView = (ObjEntityView)a; 72 ObjEntityView bView = (ObjEntityView)b; 73 74 return aView.getName().compareTo(bView.getName()); 75 76 } 77 78 } 79 | Popular Tags |