public interface IBuilderTag
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
copyright |
Modifier and Type | Method and Description |
---|---|
IBuilderTag |
firstSon() |
int |
getBeginIndex() |
int |
getEndIndex() |
IGenInfoBuilder |
getGenInfoBuilder() |
int |
getLength() |
java.lang.String |
getName() |
IBuilderTag |
getParent() |
java.lang.String |
getProperty(java.lang.String name) |
int |
getRelativeBeginIndex() |
int |
getRelativeEndIndex() |
java.lang.CharSequence |
getText()
see
IGenInfoBuilder.getText() for more information |
java.lang.CharSequence |
getTextAfter()
see
IGenInfoBuilder.getText() for more information |
java.lang.CharSequence |
getTextBefore()
see
IGenInfoBuilder.getText() for more information |
boolean |
hasSon() |
IBuilderTag |
lastSon() |
IBuilderTag |
nextTag() |
IBuilderTag |
previousTag() |
java.util.Iterator<java.lang.String> |
propertyNames() |
void |
setProperty(java.lang.String name,
java.lang.String value) |
void |
setText(java.lang.CharSequence newText)
This method replaces the old text between the
getBeginIndex()
and the getEndIndex() and put the newText. |
void |
setTextAfter(java.lang.CharSequence newText)
This method replaces the text between the current tag and its next tag.
|
void |
setTextBefore(java.lang.CharSequence newText)
This method replaces the text between the current tag and its previous tag.
|
static final java.lang.String copyright
IBuilderTag firstSon()
int getBeginIndex()
int getEndIndex()
IGenInfoBuilder getGenInfoBuilder()
IGenInfoBuilder
in which the tag is defined.int getLength()
java.lang.String getName()
IBuilderTag getParent()
java.lang.String getProperty(java.lang.String name)
name
- : The property name to search forint getRelativeBeginIndex()
int getRelativeEndIndex()
java.lang.CharSequence getText()
IGenInfoBuilder.getText()
for more informationjava.lang.CharSequence getTextAfter()
IGenInfoBuilder.getText()
for more informationjava.lang.CharSequence getTextBefore()
IGenInfoBuilder.getText()
for more informationboolean hasSon()
IBuilderTag lastSon()
IBuilderTag nextTag()
IBuilderTag previousTag()
java.util.Iterator<java.lang.String> propertyNames()
void setProperty(java.lang.String name, java.lang.String value)
name
- : The property name to setvalue
- : The value of the property namevoid setText(java.lang.CharSequence newText)
getBeginIndex()
and the getEndIndex()
and put the newText.newText
- : The new text to replace the current text.void setTextAfter(java.lang.CharSequence newText)
newText
- : The new textvoid setTextBefore(java.lang.CharSequence newText)
newText
-