Uses of Interface
org.simpleframework.xml.core.Section

Packages that use Section
Package
Description
 
  • Uses of Section in org.simpleframework.xml.core

    Classes in org.simpleframework.xml.core that implement Section
    Modifier and Type
    Class
    Description
    (package private) class 
    The ModelSection represents a section that is backed by a Model instance.
    private static class 
    The EmptySection object creates a section for used with primitives that has no values.
    Modifier and Type
    Field
    Description
    private final Section
    ClassSchema.section
    This represents the XML section defined for the class schema.
    private final Section
    PrimitiveScanner.section
    This is an empty section that is used by every scanner object.
    Methods in org.simpleframework.xml.core that return Section
    Modifier and Type
    Method
    Description
    ClassSchema.getSection()
    This is used to acquire the Section that defines the XML structure for this class schema.
    DefaultScanner.getSection()
    This is used to create a Section given the context used for serialization.
    ModelSection.getSection(String name)
    Returns the named section as a Section object.
    ObjectScanner.getSection()
    This is used to create a Section given the context used for serialization.
    PrimitiveScanner.EmptySection.getSection(String name)
    Returns the named section as a Section object.
    PrimitiveScanner.getSection()
    This is used to create a Section given the context used for serialization.
    Scanner.getSection()
    This is used to create a Section given the context used for serialization.
    Schema.getSection()
    This is used to acquire the Section that defines the XML structure for this class schema.
    Section.getSection(String name)
    Returns the named section as a Section object.
    Structure.getSection()
    This is used to acquire the Section representing the class schema.
    Methods in org.simpleframework.xml.core with parameters of type Section
    Modifier and Type
    Method
    Description
    private void
    Composite.readAttribute(InputNode node, Object source, Section section, LabelMap map)
    This readAttribute method is used for deserialization of the provided node object using a delegate converter.
    private void
    Composite.readAttributes(InputNode node, Object source, Section section)
    This readAttributes method reads the attributes from the provided XML element.
    private void
    Composite.readElement(InputNode node, Object source, Section section, LabelMap map)
    This readElement method is used for deserialization of the provided node object using a delegate converter.
    private void
    Composite.readElements(InputNode node, Object source, Section section)
    This readElements method reads the elements from the provided XML element.
    private void
    Composite.readSection(InputNode node, Object source, Section section)
    This readSection method performs deserialization of a schema class type by traversing the contacts and instantiating them using details from the provided XML element.
    private void
    Composite.readText(InputNode node, Object source, Section section)
    This readText method is used to read the text value from the XML element node specified.
    private void
    Composite.validateAttribute(InputNode node, Section section, LabelMap map)
    This validateAttribute method performs a validation of the provided node object using a delegate converter.
    private void
    Composite.validateAttributes(InputNode node, Section section)
    This validateAttributes method validates the attributes from the provided XML element.
    private void
    Composite.validateElement(InputNode node, Section section, LabelMap map)
    This validateElement method performs a validation of the provided node object using a delegate converter.
    private void
    Composite.validateElements(InputNode node, Section section)
    This validateElements method validates the elements from the provided XML element.
    private void
    Composite.validateSection(InputNode node, Section section)
    This validateSection method performs validation of a schema class type by traversing the contacts and validating them using details from the provided XML element.
    private void
    Composite.writeAttributes(OutputNode node, Object source, Section section)
    This write method is used to write all the attribute contacts from the provided source object to the XML element.
    private void
    Composite.writeElements(OutputNode node, Object source, Section section)
    This write method is used to write all the element contacts from the provided source object to the XML element.
    private void
    Composite.writeSection(OutputNode node, Object source, Section section)
    This writeSection method is used to perform serialization of the given source object.
    private void
    Composite.writeText(OutputNode node, Object source, Section section)
    This write method is used to write the text contact from the provided source object to the XML element.
    private void
    Composite.writeUnion(OutputNode node, Object source, Section section, Label label)
    The writeUnion method is determine the unions for a particular label and set the value of that union to the same value as the label.