Package org.eclipse.jface.text.templates
Class TemplateBuffer
java.lang.Object
org.eclipse.jface.text.templates.TemplateBuffer
A template buffer is a container for a string and variables.
Clients may instantiate this class.
- Since:
- 3.0
-
Constructor Summary
ConstructorDescriptionTemplateBuffer
(String string, TemplateVariable[] variables) Creates a template buffer. -
Method Summary
Modifier and TypeMethodDescriptionfinal String
Returns the string of the template buffer.final TemplateVariable[]
Returns the variable positions of the template buffer.final void
setContent
(String string, TemplateVariable[] variables) Sets the content of the template buffer.
-
Constructor Details
-
TemplateBuffer
Creates a template buffer.- Parameters:
string
- the stringvariables
- the variable positions
-
-
Method Details
-
setContent
Sets the content of the template buffer.- Parameters:
string
- the stringvariables
- the variable positions
-
getString
Returns the string of the template buffer.- Returns:
- the string representation of the template buffer
-
getVariables
Returns the variable positions of the template buffer. The returned array is owned by this variable and must not be modified.- Returns:
- the variable positions of the template buffer
-