Class XmlDefinitionsSet

java.lang.Object
org.apache.struts.tiles.xmlDefinition.XmlDefinitionsSet

public class XmlDefinitionsSet extends Object
A set of definitions read from XML definitions file.
  • Field Details

  • Constructor Details

    • XmlDefinitionsSet

      public XmlDefinitionsSet()
      Constructor.
  • Method Details

    • putDefinition

      public void putDefinition(XmlDefinition definition)
      Put definition in set.
      Parameters:
      definition - Definition to add.
    • getDefinition

      public XmlDefinition getDefinition(String name)
      Get requested definition.
      Parameters:
      name - Definition name.
    • getDefinitions

      public Map<String,XmlDefinition> getDefinitions()
      Get definitions map.
    • resolveInheritances

      public void resolveInheritances() throws NoSuchDefinitionException
      Resolve extended instances.
      Throws:
      NoSuchDefinitionException
    • extend

      public void extend(XmlDefinitionsSet child)
      Add definitions from specified child definitions set. For each definition in child, look if it already exists in this set. If not, add it, if yes, overload parent's definition with child definition.
      Parameters:
      child - Definition used to overload this object.
    • toString

      public String toString()
      Get String representation.
      Overrides:
      toString in class Object