1 25 package classycle.dependency; 26 27 32 public abstract class ResultRenderer 33 { 34 protected boolean _shortestPaths = true; 35 36 public boolean onlyShortestPaths() 37 { 38 return _shortestPaths; 39 } 40 41 public abstract PreferenceFactory getPreferenceFactory(); 42 43 public abstract void considerPreference(Preference preference); 44 45 public abstract Result getDescriptionOfCurrentPreferences(); 46 47 public abstract String render(Result result); 48 49 } 50 | Popular Tags |