Example usage for org.jdom2 Element Element

List of usage examples for org.jdom2 Element Element

Introduction

In this page you can find the example usage for org.jdom2 Element Element.

Prototype

public Element(final String name) 

Source Link

Document

Create a new element with the supplied (local) name and no namespace.

Usage

From source file:com.ohnosequences.xml.model.PredictedGenes.java

License:Open Source License

public PredictedGenes() {
    super(new Element(TAG_NAME));
}

From source file:com.ohnosequences.xml.model.PredictedRna.java

License:Open Source License

public PredictedRna() {
    super(new Element(TAG_NAME));
}

From source file:com.ohnosequences.xml.model.PredictedRnas.java

License:Open Source License

public PredictedRnas() {
    super(new Element(TAG_NAME));
}

From source file:com.ohnosequences.xml.model.uniprot.ArticleXML.java

License:Open Source License

public ArticleXML() {
    super(new Element(TAG_NAME));
}

From source file:com.ohnosequences.xml.model.uniprot.CommentXML.java

License:Open Source License

public CommentXML() {
    super(new Element(TAG_NAME));
}

From source file:com.ohnosequences.xml.model.uniprot.FeatureXML.java

License:Open Source License

public FeatureXML() {
    super(new Element(TAG_NAME));
}

From source file:com.ohnosequences.xml.model.uniprot.InterproXML.java

License:Open Source License

public InterproXML() {
    super(new Element(TAG_NAME));
}

From source file:com.ohnosequences.xml.model.uniprot.IsoformXML.java

License:Open Source License

public IsoformXML() {
    super(new Element(TAG_NAME));
}

From source file:com.ohnosequences.xml.model.uniprot.KeywordXML.java

License:Open Source License

public KeywordXML() {
    super(new Element(TAG_NAME));
}

From source file:com.ohnosequences.xml.model.uniprot.ProteinXML.java

License:Open Source License

public ProteinXML() {
    super(new Element(TAG_NAME));
}