@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; }
private void removeBaseMethods(SortedSet<FluentMethod> effectiveMethods) { FluentInterface iBase = getBaseInterface(); if (iBase != null) { iBase.filterEffectiveMethods(effectiveMethods); } }