comparison dwtx/jface/text/templates/TemplateVariableType.d @ 146:75302ef3f92f

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:34:04 +0200
parents b6bad70d540a
children f70d9508c95c
comparison
equal deleted inserted replaced
145:02cd5f1224d3 146:75302ef3f92f
50 * @noinstantiate This class is not intended to be instantiated by clients. 50 * @noinstantiate This class is not intended to be instantiated by clients.
51 */ 51 */
52 public final class TemplateVariableType { 52 public final class TemplateVariableType {
53 53
54 /** The name of the type. */ 54 /** The name of the type. */
55 private final String fName; 55 private const String fName;
56 /** The parameter list. */ 56 /** The parameter list. */
57 private final List fParams; 57 private const List fParams;
58 58
59 this(String name) { 59 this(String name) {
60 this(name, new String[0]); 60 this(name, new String[0]);
61 } 61 }
62 62