Package de.julielab.xml.binary
Class DataRange
- java.lang.Object
-
- de.julielab.xml.binary.DataRange
-
public class DataRange extends Object
This is the base class for
ElementandJeDISAttributewhich represent parts of an XMI document.
-
-
Constructor Summary
Constructors Constructor Description DataRange()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetBegin()intgetEnd()intgetLength()org.apache.commons.lang3.Range<Integer>getRange()booleanisToBeOmitted()voidsetRange(int begin, int end)voidsetRange(org.apache.commons.lang3.Range<Integer> range)voidsetToBeOmitted(boolean toBeOmitted)StringtoString()
-
-
-
Method Detail
-
isToBeOmitted
public boolean isToBeOmitted()
-
setToBeOmitted
public void setToBeOmitted(boolean toBeOmitted)
-
getRange
public org.apache.commons.lang3.Range<Integer> getRange()
-
setRange
public void setRange(org.apache.commons.lang3.Range<Integer> range)
-
setRange
public void setRange(int begin, int end)
-
getLength
public int getLength()
-
getBegin
public int getBegin()
-
getEnd
public int getEnd()
-
-