Ejemplo n.º 1
0
 /**
  * @param dict
  * @param choices
  * @throws MetaDataException
  */
 public static void addChoiceSet(MetaDataDictionary dict, ChoiceSet choices)
     throws MetaDataException {
   if (dict != null) dict.addChoiceSet(choices);
 }
Ejemplo n.º 2
0
 /**
  * @param dict
  * @param defn
  * @throws MetaDataException
  */
 public static void addElementDefn(MetaDataDictionary dict, ElementDefn defn)
     throws MetaDataException {
   if (dict != null) dict.addElementDefn(defn);
 }
Ejemplo n.º 3
0
 /**
  * @param dict
  * @param style
  * @throws MetaDataException
  */
 public static void addPredefinedStyle(MetaDataDictionary dict, PredefinedStyle style)
     throws MetaDataException {
   if (dict != null) dict.addPredefinedStyle(style);
 }
Ejemplo n.º 4
0
 /**
  * @param dict
  * @param struct
  * @throws MetaDataException
  */
 public static void addStructureDefn(MetaDataDictionary dict, StructureDefn struct)
     throws MetaDataException {
   if (dict != null) dict.addStructure(struct);
 }