Module org.mule.runtime.dsl.api
Interface XmlMetadataAnnotations.TagBoundaries
- Enclosing interface:
- XmlMetadataAnnotations
public static interface XmlMetadataAnnotations.TagBoundaries
-
Method Summary
Modifier and TypeMethodDescriptionintintintintvoidsetEndColumnNumber(int columnNumber) voidsetEndLineNumber(int lineNumber) voidsetStartColumnNumber(int columnNumber) voidsetStartLineNumber(int lineNumber)
-
Method Details
-
getStartLineNumber
int getStartLineNumber()- Returns:
- the line where the declaration of the tag starts in its source xml file.
-
setStartLineNumber
void setStartLineNumber(int lineNumber) - Parameters:
lineNumber- the line where the declaration of the tag starts in its source xml file.
-
getStartColumnNumber
int getStartColumnNumber()- Returns:
- the column where the declaration of the tag starts in the source xml file.
-
setStartColumnNumber
void setStartColumnNumber(int columnNumber) - Parameters:
columnNumber- the column where the declaration of the tag starts in the source xml file.
-
getEndLineNumber
int getEndLineNumber()- Returns:
- the line where the declaration of the tag ends in its source xml file.
-
setEndLineNumber
void setEndLineNumber(int lineNumber) - Parameters:
lineNumber- the line where the declaration of the tag ends in its source xml file.
-
getEndColumnNumber
int getEndColumnNumber()- Returns:
- the column where the declaration of the tag ends in the source xml file.
-
setEndColumnNumber
void setEndColumnNumber(int columnNumber) - Parameters:
columnNumber- the column where the declaration of the tag ends in the source xml file.
-