Example #1
0
 @Override
 public int compareTo(FluentInterface o) {
   int c = compareBase(o);
   if (c == 0) c = name.compareTo(o.name);
   if (c == 0) c = getFullName().compareTo(o.getFullName());
   return c;
 }
Example #2
0
 private void removeBaseMethods(SortedSet<FluentMethod> effectiveMethods) {
   FluentInterface iBase = getBaseInterface();
   if (iBase != null) {
     iBase.filterEffectiveMethods(effectiveMethods);
   }
 }