Home / Development / Documentation / 2.0.44 / Uses of Class info.bioinfweb.treegraph.document.TextElementData
TreeGraph 2
 


Uses of Class
info.bioinfweb.treegraph.document.TextElementData

Packages that use TextElementData
info.bioinfweb.treegraph.document Contains the classes that represent the data structure of TreeGraph 2 (document elements and formats) as well as all edit operations in the undo-package to manipulate the data structure and classes to read and write a document from and to different formats (io- subpackage). 
info.bioinfweb.treegraph.document.io.newick Contains classes implementing the import from and export to the Newick format. 
info.bioinfweb.treegraph.document.io.xtg Contains classes implementing reading and writing of TreeGraph 2 documents. 
info.bioinfweb.treegraph.document.nodebranchdata Contains classes that implement the access to different data fields of the document elements over the common interface NodeBranchDataAdapter
info.bioinfweb.treegraph.document.undo Contains all document edits to manipulate the TreeGraph 2 data structure. 
info.bioinfweb.treegraph.document.undo.edit   
info.bioinfweb.treegraph.document.undo.file   
 

Uses of TextElementData in info.bioinfweb.treegraph.document
 

Fields in info.bioinfweb.treegraph.document declared as TextElementData
private  TextElementData TextLabel.data
           
private  TextElementData AbstractTextElement.data
           
 

Fields in info.bioinfweb.treegraph.document with type parameters of type TextElementData
private  HashMap<String,TextElementData> HiddenDataMap.map
           
 

Methods in info.bioinfweb.treegraph.document that return TextElementData
 TextElementData TextElementData.clone()
           
 TextElementData HiddenDataMap.get(Object key)
           
 TextElementData TextLabel.getData()
           
 TextElementData TextElement.getData()
          Returns the data associated with this text element.
 TextElementData AbstractTextElement.getData()
           
static TextElementData IDManager.getDataByID(Node node, String id)
          Returns the text element data specified by the given ID which is linked to this node (either from a text label, hidden node data or hidden branch data).
 TextElementData HiddenDataMap.put(String key, TextElementData value)
           
 TextElementData HiddenDataMap.remove(Object key)
           
 

Methods in info.bioinfweb.treegraph.document that return types with arguments of type TextElementData
 Set<Map.Entry<String,TextElementData>> HiddenDataMap.entrySet()
           
 Collection<TextElementData> HiddenDataMap.values()
           
 

Methods in info.bioinfweb.treegraph.document with parameters of type TextElementData
 void TextElementData.assign(TextElementData other)
           
 TextElementData HiddenDataMap.put(String key, TextElementData value)
           
 

Method parameters in info.bioinfweb.treegraph.document with type arguments of type TextElementData
 void HiddenDataMap.putAll(Map<? extends String,? extends TextElementData> m)
           
 

Uses of TextElementData in info.bioinfweb.treegraph.document.io.newick
 

Methods in info.bioinfweb.treegraph.document.io.newick that return TextElementData
private  TextElementData CommentDataReader.readTextElementData(String text)
           
 

Uses of TextElementData in info.bioinfweb.treegraph.document.io.xtg
 

Methods in info.bioinfweb.treegraph.document.io.xtg with parameters of type TextElementData
private  void XTGReader.readTextElementDataAttr(TextElementData data, StartElement element)
           
private  void XTGWriter.writeTextElementData(TextElementData data)
           
 

Uses of TextElementData in info.bioinfweb.treegraph.document.nodebranchdata
 

Methods in info.bioinfweb.treegraph.document.nodebranchdata that return TextElementData
 TextElementData TextLabelAdapter.getData(Node node)
           
abstract  TextElementData TextElementDataAdapter.getData(Node node)
           
 TextElementData NodeNameAdapter.getData(Node node)
           
 TextElementData HiddenDataAdapter.getData(Node node)
           
 

Methods in info.bioinfweb.treegraph.document.nodebranchdata with parameters of type TextElementData
 boolean TextLabelAdapter.assignData(Node node, TextElementData data)
           
abstract  boolean TextElementDataAdapter.assignData(Node node, TextElementData data)
           
 boolean NodeNameAdapter.assignData(Node node, TextElementData data)
           
 boolean HiddenDataAdapter.assignData(Node node, TextElementData data)
           
 

Uses of TextElementData in info.bioinfweb.treegraph.document.undo
 

Fields in info.bioinfweb.treegraph.document.undo with type parameters of type TextElementData
private  List<TextElementData> NodeBranchDataBackup.list
           
 

Uses of TextElementData in info.bioinfweb.treegraph.document.undo.edit
 

Fields in info.bioinfweb.treegraph.document.undo.edit declared as TextElementData
private  TextElementData TextElementEdit.newData
           
private  TextElementData TextElementEdit.oldData
           
 

Constructors in info.bioinfweb.treegraph.document.undo.edit with parameters of type TextElementData
TextElementEdit(Document document, TextElement element, TextElementData newData)
           
 

Uses of TextElementData in info.bioinfweb.treegraph.document.undo.file
 

Fields in info.bioinfweb.treegraph.document.undo.file with type parameters of type TextElementData
private  Vector<TextElementData> AddSupportValuesEdit.leafValues
           
private  List<TextElementData> ApplyNameTableEdit.savedValues
           
 

Methods in info.bioinfweb.treegraph.document.undo.file with parameters of type TextElementData
private  int AddSupportValuesEdit.getLeafIndex(TextElementData value)
           
 

Method parameters in info.bioinfweb.treegraph.document.undo.file with type arguments of type TextElementData
private  void AddSupportValuesEdit.addLeafList(List<TextElementData> list, Node root, TextElementDataAdapter adapter)
          Fills the specified list with the values of all leafs under root.