mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
remove color from more file template descriptions to get them to display nicely under Darcula
This commit is contained in:
@@ -1,23 +1,23 @@
|
||||
<html>
|
||||
<body>
|
||||
<table border="0" cellpadding="2" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111">
|
||||
<table border="0" cellpadding="2" cellspacing="0" style="border-collapse: collapse">
|
||||
<tr>
|
||||
<td colspan="3"><font face="verdana" size="-1">This is a built-in template used for filling the body of a
|
||||
<b><i>catch</i></b> statement each time it is generated by the program, e.g. when using the
|
||||
<b>Code | Surround with...</b> function (<b><i>Ctrl+Alt+T</i></b>).<br>
|
||||
The template is editable. Along with Java expressions and comments, you can also use the predefined variables
|
||||
<td><font face="verdana" size="-1">This is a built-in template used for filling the body of a
|
||||
<b>catch</b> block when it is generated, e.g. when using the
|
||||
<i>Code | Surround with...</i> function.<br>
|
||||
The template is editable. Along with Java expressions and comments, you can also use predefined variables
|
||||
that will be then expanded into the corresponding values.</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111">
|
||||
<table border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse">
|
||||
<tr>
|
||||
<td colspan="3"><font face="verdana" size="-1">Predefined variables will take the following values:</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${EXCEPTION}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" ><b>${EXCEPTION}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">name of the <b><i>Exception</i></b> variable specified as a <b><i>catch</i></b> parameter</font></td>
|
||||
<td valign="top"><font face="verdana" size="-1">name of the <b>Exception</b> variable specified as a <b>catch</b> parameter</font></td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
|
||||
@@ -1,41 +1,44 @@
|
||||
<html>
|
||||
<body>
|
||||
<table border="0" cellpadding="2" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111">
|
||||
<table border="0" cellpadding="2" cellspacing="0" style="border-collapse: collapse">
|
||||
<tr>
|
||||
<td colspan="3"><font face="verdana" size="-1">
|
||||
This is a built-in template used for replace string concatenation (e.g. <b><i>String s = "Hello " + name;</i></b>)
|
||||
with internationalized Java code expression,
|
||||
e.g. <b><i>String s = MessageFormat.format(myResourceBundle.getString("hello.0"), name);</i></b>.<br>
|
||||
The template is editable. Along with Java expressions and comments, you can also use the predefined variables that
|
||||
<td colspan="2"><font face="verdana" size="-1">
|
||||
This is a built-in template used for replacing a string concatenation (e.g. </font><code>String s = "Hello " + name;</code>)
|
||||
<font face="verdana" size="-1">with an internationalized Java code expression (e.g.</font>
|
||||
<code>String s = MessageFormat.format(​myResourceBundle.getString(​"hello.0"), name);</code><font face="verdana" size="-1">).<br>
|
||||
The template is editable. Along with Java expressions and comments, you can also use predefined variables that
|
||||
will be then expanded into the corresponding values.</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111">
|
||||
<table border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse">
|
||||
<tr>
|
||||
<td colspan="3"><font face="verdana" size="-1">Predefined variables will take the following values:</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${RESOURCE_BUNDLE}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${RESOURCE_BUNDLE}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">Expression of type <b><i>java.util.ResourceBundle</i></b>, instance of which is available in this context</font></td>
|
||||
<td valign="top"><font face="verdana" size="-1">Expression of type <b>java.util.ResourceBundle</b>, instance of which is available in this context.</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${PROPERTY_KEY}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${PARAMETERS}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${PARAMETERS}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">Property key name which is specified in the corresponding properties file.
|
||||
Typically it is the value that is used for <b><i>ResourceBundle.getString()</i></b> method parameter.
|
||||
<td valign="top"><font face="verdana" size="-1">Variables used in the string concatenation, usually passed as arguments to the internationalized expression.</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${PROPERTY_KEY}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">Property key name which is defined in the corresponding properties file.
|
||||
Typically it is the value that is used for <code>ResourceBundle.getString()</code> method parameter.
|
||||
</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${PROPERTY_VALUE}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${PROPERTY_VALUE}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">Property value which is specified in the corresponding properties file.
|
||||
This is an original Java string literal value.
|
||||
<td valign="top"><font face="verdana" size="-1">Property value which is defined in the corresponding properties file.
|
||||
This is the original Java string literal value.
|
||||
</font></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,40 +1,39 @@
|
||||
<html>
|
||||
<body>
|
||||
<table border="0" cellpadding="2" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111">
|
||||
<table border="0" cellpadding="2" cellspacing="0" style="border-collapse: collapse">
|
||||
<tr>
|
||||
<td colspan="3"><font face="verdana" size="-1">
|
||||
This is a built-in template used for replace string literal expression (e.g. <b><i>String s = "Hello";</i></b>)
|
||||
with internationalized Java code expression,
|
||||
e.g. <b><i>String s = myResourceBundle.getString("hello");</i></b>.<br>
|
||||
The template is editable. Along with Java expressions and comments, you can also use the predefined variables that
|
||||
<td ><font face="verdana" size="-1">
|
||||
This is a built-in template used for replacing a string literal expression (e.g. </font><code>String s = "Hello";</code><font face="verdana" size="-1">)
|
||||
with an internationalized Java code expression
|
||||
(e.g. </font><code>String s = myResourceBundle.getString("hello");</code><font face="verdana" size="-1">).<br>
|
||||
The template is editable. Along with Java expressions and comments, you can also use predefined variables that
|
||||
will be then expanded into the corresponding values.</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111">
|
||||
<table border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse">
|
||||
<tr>
|
||||
<td colspan="3"><font face="verdana" size="-1">Predefined variables will take the following values:</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${RESOURCE_BUNDLE}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${RESOURCE_BUNDLE}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">Expression of type <b><i>java.util.ResourceBundle</i></b>, instance of which is available in this context</font></td>
|
||||
<td valign="top"><font face="verdana" size="-1">Expression of type <code>java.util.ResourceBundle</code>, instance of which is available in this context.</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${PROPERTY_KEY}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${PROPERTY_KEY}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">Property key name which is specified in the corresponding properties file.
|
||||
Typically it is the value that is used for <b><i>ResourceBundle.getString()</i></b> method parameter.
|
||||
Typically it is the value that is used for <code>ResourceBundle.getString()</code> method parameter.
|
||||
</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${PROPERTY_VALUE}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${PROPERTY_VALUE}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">Property value which is specified in the corresponding properties file.
|
||||
This is an original Java string literal value.
|
||||
<td valign="top"><font face="verdana" size="-1">Property value which is defined in the corresponding properties file.
|
||||
This is the original Java string literal value.
|
||||
</font></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,53 +1,43 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
<table border="0" cellpadding="2" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111">
|
||||
<tr>
|
||||
<td colspan="3"><font face="verdana" size="-1">
|
||||
This is a built-in template used for replace text in <b>JSP</b>,
|
||||
e.g.
|
||||
This is a built-in template used for replacing text in JSP,
|
||||
e.g.</font>
|
||||
<br>
|
||||
<code> <<b>html</b>><<b>body</b>><br>
|
||||
Hello!<br>
|
||||
</<b>body</b>></<b>html</b>></code>
|
||||
<br>
|
||||
|
||||
<<span style="font-weight:bold; color:000080;">html</span>>
|
||||
<<span style="font-weight:bold; color:000080;">body</span>>
|
||||
<font face="verdana" color="#7f0000">Hello!</font>
|
||||
<<span style="font-weight:bold; color:000080;">/body</span>>
|
||||
<<span style="font-weight:bold; color:000080;">/html</span>>
|
||||
<font face="verdana" size="-1">with internationalized JSP custom tag usage, e.g.</font>
|
||||
<br>
|
||||
with internationalized JSP custom tag usage,
|
||||
e.g.
|
||||
<br>
|
||||
|
||||
<<span style="font-weight:bold; color:000080;">html</span>>
|
||||
<<span style="font-weight:bold; color:000080;">body</span>>
|
||||
<font face="verdana" color="#7f0000"><bean:message key="HelloKey"/></font>
|
||||
<<span style="font-weight:bold; color:000080;">/body</span>>
|
||||
<<span style="font-weight:bold; color:000080;">/html</span>>
|
||||
.
|
||||
<p>
|
||||
The template is editable. Along with expressions allowed in JSP context, you can also use the predefined variables that
|
||||
<code> <<b>html</b>><<b>body</b>><br>
|
||||
<<b>bean:message</b> key="HelloKey"/><br>
|
||||
</<b>body</b>></<b>html</b>></code>
|
||||
<br>
|
||||
<font face="verdana" size="-1">The template is editable. Along with expressions allowed in a JSP context, you can also use predefined variables that
|
||||
will be then expanded into the corresponding values.</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111">
|
||||
<table border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse">
|
||||
<tr>
|
||||
<td colspan="3"><font face="verdana" size="-1">Predefined variables will take the following values:</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${PROPERTY_KEY}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${PROPERTY_KEY}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">Property key name which is specified in the corresponding properties file.
|
||||
</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${PROPERTY_VALUE}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${PROPERTY_VALUE}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">Property value which is specified in the corresponding properties file.
|
||||
This is an original JSP text selection value.
|
||||
</font></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,50 +1,50 @@
|
||||
<html>
|
||||
<body>
|
||||
<table border="0" cellpadding="2" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111">
|
||||
<table border="0" cellpadding="2" cellspacing="0" style="border-collapse: collapse">
|
||||
<tr>
|
||||
<td colspan="3"><font face="verdana" size="-1">
|
||||
This is a built-in template used for filling the body of an implemented method each time it is generated by the program,
|
||||
e.g. when using the <b>Implement Abstract Class</b>/<b>Implement Abstract Method</b> intention actions or
|
||||
calling the <b>Code | Implement Method...</b> function (<b><i>Ctrl+I</i></b>).<br>
|
||||
The template is editable. Along with Java expressions and comments, you can also use the predefined variables that
|
||||
This is a built-in template used for filling the body of an implemented method when it is generated,
|
||||
e.g. when using the <i>Implement Abstract Class</i> or <i>Implement Abstract Method</i> intention actions or
|
||||
calling the <i>Code | Implement Method...</i> function.<br>
|
||||
The template is editable. Along with Java expressions and comments, you can also use predefined variables that
|
||||
will be then expanded into the corresponding values.</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111">
|
||||
<table border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse">
|
||||
<tr>
|
||||
<td colspan="3"><font face="verdana" size="-1">Predefined variables will take the following values:</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${RETURN_TYPE}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${RETURN_TYPE}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">a return type of a created method</font></td>
|
||||
<td valign="top"><font face="verdana" size="-1">return type of a created method</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${DEFAULT_RETURN_VALUE}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${DEFAULT_RETURN_VALUE}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">a value returned by the method by default</font></td>
|
||||
<td valign="top"><font face="verdana" size="-1">value returned by the method by default</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${METHOD_NAME}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${METHOD_NAME}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">name of the method that is implemented</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${CLASS_NAME}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${CLASS_NAME}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">qualified name of the class where method is implemented</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${SIMPLE_CLASS_NAME}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${SIMPLE_CLASS_NAME}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">non-qualified name of the class where method is implemented</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3"><font face="verdana" size="-1">All the predefined variables from "File Header" Include template are also available
|
||||
<td colspan="3"><font face="verdana" size="-1">All the predefined variables from the <i>File Header</i> template (<i>Includes</i> tab)are also available
|
||||
(e.g.
|
||||
<font face="verdana" size="-2" color="#7F0000"><b><i>${USER}</i></b></font>,
|
||||
<font face="verdana" size="-2" color="#7F0000"><b><i>${DATE}</i></b></font>,
|
||||
<font face="verdana" size="-2"><b>${USER}</b></font>,
|
||||
<font face="verdana" size="-2"><b>${DATE}</b></font>,
|
||||
etc)</font>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@@ -1,43 +1,51 @@
|
||||
<html>
|
||||
<body>
|
||||
<table border="0" cellpadding="2" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111">
|
||||
<table border="0" cellpadding="2" cellspacing="0" style="border-collapse: collapse">
|
||||
<tr>
|
||||
<td colspan="3"><font face="verdana" size="-1">This is a built-in template used for filling the body of a method
|
||||
each time it is generated by the program, e.g. when using the <b>Create Method from Usage</b> intention action.<br>
|
||||
The template is editable. Along with Java expressions and comments, you can also use the predefined variables
|
||||
when it is generated, e.g. when using the <i>Create Method from Usage</i> intention action.<br>
|
||||
The template is editable. Along with Java expressions and comments, you can also use predefined variables
|
||||
that will be then expanded into the corresponding values.</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111">
|
||||
<table border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse">
|
||||
<tr>
|
||||
<td colspan="3"><font face="verdana" size="-1">Predefined variables will take the following values:</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${RETURN_TYPE}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${RETURN_TYPE}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">a return type of a created method</font></td>
|
||||
<td valign="top"><font face="verdana" size="-1">return type of a created method</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${DEFAULT_RETURN_VALUE}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${DEFAULT_RETURN_VALUE}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">a value returned by the method by default</font></td>
|
||||
<td valign="top"><font face="verdana" size="-1">value returned by the method by default</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${METHOD_NAME}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${METHOD_NAME}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">name of the created method</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${CLASS_NAME}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${CLASS_NAME}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">qualified name of the class where method is created</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${SIMPLE_CLASS_NAME}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${SIMPLE_CLASS_NAME}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">non-qualified name of the class where method is implemented</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3"><font face="verdana" size="-1">All the predefined variables from the <i>File Header</i> template (<i>Includes</i> tab)are also available
|
||||
(e.g.
|
||||
<font face="verdana" size="-2"><b>${USER}</b></font>,
|
||||
<font face="verdana" size="-2"><b>${DATE}</b></font>,
|
||||
etc)</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,60 +1,59 @@
|
||||
<html>
|
||||
<body>
|
||||
<table border="0" cellpadding="2" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111">
|
||||
<table border="0" cellpadding="2" cellspacing="0" style="border-collapse: collapse">
|
||||
<tr>
|
||||
<td colspan="3"><font face="verdana" size="-1">
|
||||
This is a built-in template used for filling the body of an overridden method each time it is generated by the program,
|
||||
e.g. when calling the <b>Code | Override Method...</b> function (<b><i>Ctrl+O</i></b>).<br>
|
||||
The template is editable. Along with Java expressions and comments, you can also use the predefined variables that
|
||||
e.g. when calling the <i>Code | Override Method...</i> function.<br>
|
||||
The template is editable. Along with Java expressions and comments, you can also use predefined variables that
|
||||
will be then expanded into the corresponding values.</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111">
|
||||
<table border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse">
|
||||
<tr>
|
||||
<td colspan="3"><font face="verdana" size="-1">Predefined variables will take the following values:</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${CALL_SUPER}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${CALL_SUPER}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">a super method call, for <b><i>void</i></b> methods - <b><i>super();</i></b> with or without parameters;
|
||||
for other methods - <b><i>return super();</i></b> with or without parameters
|
||||
<td valign="top"><font face="verdana" size="-1">a super method call, for <b>void</b> methods - <code><b>super</b>.<i>method_name</i>();</code> with or without parameters;
|
||||
for other methods - <code><b>return</b> <b>super</b>.<i>method_name</i>();</code> with or without parameters
|
||||
</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${RETURN_TYPE}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${RETURN_TYPE}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">a return type of a created method</font></td>
|
||||
<td valign="top"><font face="verdana" size="-1">return type of a created method</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${DEFAULT_RETURN_VALUE}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${DEFAULT_RETURN_VALUE}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">a value returned by the method by default</font></td>
|
||||
<td valign="top"><font face="verdana" size="-1">value returned by the method by default</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${METHOD_NAME}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${METHOD_NAME}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">name of the method that is overridden</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${CLASS_NAME}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${CLASS_NAME}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">qualified name of the class where method is overridden</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2" color="#7F0000"><b><i>${SIMPLE_CLASS_NAME}</i></b></font></nobr></td>
|
||||
<td valign="top"><nobr><font face="verdana" size="-2"><b>${SIMPLE_CLASS_NAME}</b></font></nobr></td>
|
||||
<td width="10"> </td>
|
||||
<td valign="top"><font face="verdana" size="-1">non-qualified name of the class where method is implemented</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3"><font face="verdana" size="-1">All the predefined variables from "File Header" Include template are also available
|
||||
<td colspan="3"><font face="verdana" size="-1">All the predefined variables from the <i>File Header</i> template (<i>Includes</i> tab)are also available
|
||||
(e.g.
|
||||
<font face="verdana" size="-2" color="#7F0000"><b><i>${USER}</i></b></font>,
|
||||
<font face="verdana" size="-2" color="#7F0000"><b><i>${DATE}</i></b></font>,
|
||||
<font face="verdana" size="-2"><b>${USER}</b></font>,
|
||||
<font face="verdana" size="-2"><b>${DATE}</b></font>,
|
||||
etc)</font>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user