List of usage examples for org.jdom2 Element Element
public Element(final String name)
From source file:com.ohnosequences.xml.model.ncbi.NCBITaxonomyNodeXML.java
License:Open Source License
public NCBITaxonomyNodeXML() { super(new Element(TAG_NAME)); }
From source file:com.ohnosequences.xml.model.oric.Oric.java
License:Open Source License
public Oric() { super(new Element(TAG_NAME)); }
From source file:com.ohnosequences.xml.model.Overlap.java
License:Open Source License
public Overlap() { super(new Element(TAG_NAME)); }
From source file:com.ohnosequences.xml.model.pal.PalindromicityResultXML.java
License:Open Source License
public PalindromicityResultXML() { super(new Element(TAG_NAME)); }
From source file:com.ohnosequences.xml.model.pg.Primer.java
License:Open Source License
public Primer() { super(new Element(TAG_NAME)); }
From source file:com.ohnosequences.xml.model.PredictedGene.java
License:Open Source License
public PredictedGene() { super(new Element(TAG_NAME)); }
From source file:com.ohnosequences.xml.model.PredictedGene.java
License:Open Source License
private void initStartCodonTag() { Element temp = root.getChild(START_CODON_TAG_NAME); if (temp == null) { root.addContent(new Element(START_CODON_TAG_NAME)); }//from ww w .ja v a 2 s. c o m }
From source file:com.ohnosequences.xml.model.PredictedGene.java
License:Open Source License
private void initStopCodonTag() { Element temp = root.getChild(STOP_CODON_TAG_NAME); if (temp == null) { root.addContent(new Element(STOP_CODON_TAG_NAME)); }//from w w w . j a v a 2 s .c o m }
From source file:com.ohnosequences.xml.model.PredictedGene.java
License:Open Source License
private void initExtraStopCodonsTag() { Element temp = root.getChild(EXTRA_STOP_CODONS_TAG_NAME); if (temp == null) { root.addContent(new Element(EXTRA_STOP_CODONS_TAG_NAME)); }/*from ww w .ja v a 2 s . c o m*/ }
From source file:com.ohnosequences.xml.model.PredictedGene.java
License:Open Source License
private void initFrameshiftsTag() { Element temp = root.getChild(FRAME_SHIFTS_TAG_NAME); if (temp == null) { root.addContent(new Element(FRAME_SHIFTS_TAG_NAME)); }//w w w . j a v a 2 s . com }