Ejemplo n.º 1
0
 @NotNull
 public List<AbstractDomChildDescriptionImpl> getChildrenDescriptions() {
   checkInitialized();
   final ArrayList<AbstractDomChildDescriptionImpl> list =
       new ArrayList<AbstractDomChildDescriptionImpl>();
   myAttributes.dumpDescriptions(list);
   myFixeds.dumpDescriptions(list);
   myCollections.dumpDescriptions(list);
   ContainerUtil.addIfNotNull(myStaticGenericInfo.getCustomNameChildrenDescription(), list);
   return list;
 }
Ejemplo n.º 2
0
 @Nullable
 public CustomDomChildrenDescriptionImpl getCustomNameChildrenDescription() {
   checkInitialized();
   if (myCustomChildren != null) return myCustomChildren;
   return myStaticGenericInfo.getCustomNameChildrenDescription();
 }