Uses of Interface
org.qsos.data.IElement

Packages that use IElement
org.qsos.data   
org.qsos.transformation   
org.qsos.utils   
 

Uses of IElement in org.qsos.data
 

Classes in org.qsos.data that implement IElement
 class Element
          This class is the reference implementation of the IElement interface.
 

Methods in org.qsos.data that return IElement
 IElement Element.addElement(IElement item)
          Allow to add item to the list of sub element
 IElement IElement.addElement(IElement item)
          Allow to add item to the list of sub element
 IElement Element.getContainer()
          Return an IElement which represents the parent of the current Element.
 IElement IElement.getContainer()
          Return an IElement which represents the parent of the current Element.
 IElement ISheet.getRoot()
          Allow to get the root element.
 IElement Sheet.getRoot()
          Allow to get the root element.
 

Methods in org.qsos.data that return types with arguments of type IElement
 java.util.List<IElement> Element.getElements()
          Return a List of IElement which represents all the children of the current Element.
 java.util.List<IElement> IElement.getElements()
          Return a List of IElement which represents all the children of the current Element.
 

Methods in org.qsos.data with parameters of type IElement
 IElement Element.addElement(IElement item)
          Allow to add item to the list of sub element
 IElement IElement.addElement(IElement item)
          Allow to add item to the list of sub element
 void Element.delElement(IElement item)
          Allow to delete an item from the list of sub element delete all the children
 void IElement.delElement(IElement author)
           
 void Element.setContainer(IElement element)
          Allow to set the container (the parent of an Element).
 void IElement.setContainer(IElement element)
          Allow to set the container (the parent of an Element).
 void ISheet.setRoot(IElement root)
          Allow to set the root element
 void Sheet.setRoot(IElement root)
          Allow to set the root element
 

Method parameters in org.qsos.data with type arguments of type IElement
 void Element.setElements(java.util.List<IElement> elements)
          Allow to set the children of the current Element.
 void IElement.setElements(java.util.List<IElement> elements)
          Allow to set the children of the current Element.
 

Constructors in org.qsos.data with parameters of type IElement
Element(java.lang.Long id, java.lang.String meta, java.lang.String name, java.lang.String title, java.lang.String text, java.util.List<IElement> list, IElement elem)
          Allow to construct the value of every attribute of the class.
Sheet(IElement root)
          Constructor which instanciate the root element at the given value.
 

Constructor parameters in org.qsos.data with type arguments of type IElement
Element(java.lang.Long id, java.lang.String meta, java.lang.String name, java.lang.String title, java.lang.String text, java.util.List<IElement> list, IElement elem)
          Allow to construct the value of every attribute of the class.
 

Uses of IElement in org.qsos.transformation
 

Methods in org.qsos.transformation that return IElement
 IElement DesXMLizer.transformAnElement(org.jdom.Element target)
           This method is private due to the fact that it is a recursive auxilary method of transformFromXML
 

Methods in org.qsos.transformation with parameters of type IElement
 org.jdom.Element XMLizer.transformAnIElement(IElement item)
          This method is a recursive method which allows to create all the xml node corresponding to the elemnt in the java representation.
 

Uses of IElement in org.qsos.utils
 

Methods in org.qsos.utils that return IElement
 IElement Search.searchAndGetIElement()
           
 IElement Search.searchIElement()
           
 

Methods in org.qsos.utils that return types with arguments of type IElement
 java.util.List<IElement> Search.searchByMeta()
           
 java.util.List<IElement> Search.searchByName()
           
 java.util.List<IElement> Search.searchRecByMeta(IElement target, java.util.List<IElement> list)
           
 java.util.List<IElement> Search.searchRecByName(IElement target, java.util.List<IElement> list)
           
 

Methods in org.qsos.utils with parameters of type IElement
 java.util.List<IElement> Search.searchRecByMeta(IElement target, java.util.List<IElement> list)
           
 java.util.List<IElement> Search.searchRecByName(IElement target, java.util.List<IElement> list)
           
 

Method parameters in org.qsos.utils with type arguments of type IElement
 java.util.List<IElement> Search.searchRecByMeta(IElement target, java.util.List<IElement> list)
           
 java.util.List<IElement> Search.searchRecByName(IElement target, java.util.List<IElement> list)