public interface CodeTemplate extends java.lang.Cloneable, java.lang.Comparable<CodeTemplate>, java.io.Serializable
For example, you can associate the identifier forb
(short for "for-block") with the following code:
for (<caret>) { }Then, whenever you type
forb
followed by a trigger
(e.g., a space) into a text area with this CodeTemplate
,
the code snippet is added in place of forb
. Further,
the caret is placed at the position denoted by <caret>
.
Static text replacements are done with StaticCodeTemplate
. Dynamic
templates can also be created and used.
StaticCodeTemplate
限定符和类型 | 方法和说明 |
---|---|
java.lang.Object |
clone()
Creates a deep copy of this template.
|
java.lang.String |
getID()
Returns the ID of this code template.
|
void |
invoke(RSyntaxTextArea textArea)
Invokes this code template.
|
java.lang.Object clone()
java.lang.String getID()
void invoke(RSyntaxTextArea textArea) throws javax.swing.text.BadLocationException
textArea
- The text area to operate on.javax.swing.text.BadLocationException
- If something bad happens.