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