Uses of Interface
org.simpleframework.xml.core.Model
-
Packages that use Model Package Description org.simpleframework.xml.core -
-
Uses of Model in org.simpleframework.xml.core
Classes in org.simpleframework.xml.core that implement Model Modifier and Type Class Description (package private) classTreeModelTheTreeModelobject is used to build a tree like structure to represent the XML schema for an annotated class.Fields in org.simpleframework.xml.core declared as Model Modifier and Type Field Description private ModelModelSection. modelThis is the model that contains the elements and attributes.private ModelStructure. modelThis contains the tree of XML elements and attributes used.private ModelStructureBuilder. rootThis the core model used to represent the XML structure.Methods in org.simpleframework.xml.core that return Model Modifier and Type Method Description private ModelStructureBuilder. create(Expression path)This is used to register aModelfor this builder.private ModelTreeModel. create(java.lang.String name, java.lang.String prefix, int index)This is used to register aModelwithin this model.ModelModel. lookup(java.lang.String name, int index)This method is used to look for aModelthat matches the specified element name.ModelModel. lookup(Expression path)This method is used to look for aModelthat matches the specified expression.ModelModelList. lookup(int index)This is used to find a model based on its index.ModelModelMap. lookup(java.lang.String name, int index)This method is used to look for aModelthat matches the specified element name.private ModelStructureBuilder. lookup(Expression path)This method is used to look for aModelthat matches the specified expression.ModelTreeModel. lookup(java.lang.String name, int index)This method is used to look for aModelthat matches the specified element name.ModelTreeModel. lookup(Expression path)This method is used to look for aModelthat matches the specified expression.ModelModel. register(java.lang.String name, java.lang.String prefix, int index)This is used to register aModelwithin this model.private ModelStructureBuilder. register(Expression path)This is used to register aModelfor this builder.ModelTreeModel. register(java.lang.String name, java.lang.String prefix, int index)This is used to register aModelwithin this model.ModelModelList. take()This is used to take the models from the model list at the first index.Methods in org.simpleframework.xml.core with parameters of type Model Modifier and Type Method Description voidModelAssembler. assemble(Model model, Order order)This is used to assemble the model by perform registrations based on theOrderannotation.private voidModelAssembler. assembleAttributes(Model model, Order order)This is used to assemble the model by perform registrations based on theOrderannotation.private voidModelAssembler. assembleElements(Model model, Order order)This is used to assemble the model by perform registrations based on theOrderannotation.voidModelList. register(Model model)This is used to register the model within the list.voidModelMap. register(java.lang.String name, Model model)This is used to register aModelwithin this map.private voidModelAssembler. registerAttribute(Model model, Expression path)This will register the attribute specified in the path within the provided model.private voidModelAssembler. registerAttributes(Model model, Expression path)This is used to perform registrations using an expression.private voidModelAssembler. registerElement(Model model, Expression path)This is used to register the element within the specified model.private voidModelAssembler. registerElements(Model model, Expression path)This is used to perform registrations using an expression.Constructors in org.simpleframework.xml.core with parameters of type Model Constructor Description ModelSection(Model model)Constructor for theModelSectionobject.Structure(Instantiator factory, Model model, Label version, Label text, boolean primitive)Constructor for theStructureobject.
-