comparison dwtx/jface/text/templates/TemplateTranslator.d @ 133:7d818bd32d63

Fix ctors to this with gvim regexp
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 01:29:22 +0200
parents c4fb132a086c
children 51e6e63f930e
comparison
equal deleted inserted replaced
132:77bd3bb3d7b8 133:7d818bd32d63
109 private final class VariableDescription { 109 private final class VariableDescription {
110 final List fOffsets= new ArrayList(5); 110 final List fOffsets= new ArrayList(5);
111 final String fName; 111 final String fName;
112 TemplateVariableType fType; 112 TemplateVariableType fType;
113 113
114 VariableDescription(String name, TemplateVariableType type) { 114 this(String name, TemplateVariableType type) {
115 fName= name; 115 fName= name;
116 fType= type; 116 fType= type;
117 } 117 }
118 118
119 void mergeType(TemplateVariableType type) throws TemplateException { 119 void mergeType(TemplateVariableType type) throws TemplateException {