Esempio n. 1
0
 // edburns: This is the magic line that tells the system to trim out the
 // extra content above and below the tag.
 protected static boolean isTrimmed(String ns, String name) {
   boolean matchInUILibrary =
       UILibrary.Namespace.equals(ns)
           && (CompositionHandler.Name.equals(name) || ComponentRefHandler.Name.equals(name));
   return matchInUILibrary;
 }
Esempio n. 2
0
 protected static boolean isRemove(String ns, String name) {
   return UILibrary.Namespace.equals(ns) && "remove".equals(name);
 }