]> git.uio.no Git - ifi-stolz-refaktor.git/blame - case-study/jdt-after/templates/default-templates.properties
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / jdt-after / templates / default-templates.properties
CommitLineData
1b2798f6
EK
1###############################################################################
2# Copyright (c) 2000, 2011 IBM Corporation and others.
3# All rights reserved. This program and the accompanying materials
4# are made available under the terms of the Eclipse Public License v1.0
5# which accompanies this distribution, and is available at
6# http://www.eclipse.org/legal/epl-v10.html
7#
8# Contributors:
9# IBM Corporation - initial API and implementation
10# Benjamin Muskalla <bmuskalla@eclipsesource.com> - [templates] new SWT templates - ToolBar and ToolItem - https://bugs.eclipse.org/bugs/show_bug.cgi?id=264052
11###############################################################################
12
13Templates.for_array=iterate over array
14Templates.for_temp=iterate over array with temporary variable
15Templates.for_collection=iterate over collection
16Templates.for_iterable=iterate over an array or Iterable
17Templates.while_enumeration=iterate with enumeration
18Templates.while_iterator=iterate with iterator
19Templates.do=do while statement
20Templates.switch=switch case statement
21Templates.if=if statement
22Templates.ifelse=if else statement
23Templates.elseif=else if block
24Templates.else=else block
25Templates.try=try catch block
26Templates.catch=catch block
27Templates.main=main method
28Templates.public_method=public method
29Templates.public_static_method=public static method
30Templates.protected_method=protected method
31Templates.private_method=private method
32Templates.private_static_method=private static method
33Templates.instanceof=dynamic type test and cast
34Templates.cast=dynamic cast
35Templates.toarray=convert collection to array
36Templates.test=test method
37Templates.test_junit4=test method (JUnit 4)
38Templates.systrace=print current method to standard out
39Templates.sysout=print to standard out
40Templates.syserr=print to standard error
41Templates.code_tag=<code></code>
42Templates.code_tag_null=<code>null</code>
43Templates.code_tag_true=<code>true</code>
44Templates.code_tag_false=<code>false</code>
45Templates.pre_tag=<pre></pre>
46Templates.b_tag=<b></b>
47Templates.i_tag=<i></i>
48Templates.author=author name
49Templates.new=create new object
50Templates.lazy=lazy creation
51Templates.while_condition=while loop with condition
52Templates.non-nls= non-externalized string marker
53Templates.fall-through= $FALL-THROUGH$ marker
54Templates.synchronized= synchronized block
55Templates.runnable= runnable
56Templates.arraymerge= merge two arrays into one
57Templates.arrayadd= add an element to an array
58Templates.static_final=static final field
59
60# Java Only stuff
61CompilationUnitContextType.variable.description.file=Filename of compilation unit
62CompilationUnitContextType.variable.description.primary.type.name=Filename without extension
63CompilationUnitContextType.variable.description.enclosing.method=Enclosing method name
64CompilationUnitContextType.variable.description.enclosing.type=Enclosing type name
65CompilationUnitContextType.variable.description.enclosing.package=Enclosing package name
66CompilationUnitContextType.variable.description.enclosing.project=Enclosing project name
67CompilationUnitContextType.variable.description.enclosing.method.arguments=Argument names of enclosing method
68CompilationUnitContextType.variable.description.return.type=Enclosing method return type
69
70JavaContextType.variable.description.array=A proposal for an array
71JavaContextType.variable.description.array.type=A proposal for the element type of an array
72JavaContextType.variable.description.array.element=A proposal for the element name of an array
73JavaContextType.variable.description.index=A proposal for an index (int)
74JavaContextType.variable.description.collection=A proposal for a collection (java.util.Collection)
75JavaContextType.variable.description.iterator=A proposal for an iterator (java.util.Iterator)
76JavaContextType.variable.description.todo=Todo task tag
77
78JavaContext.error.title=Template Error
79JavaContext.error.message=Template file incomplete or has errors. You can load the default templates from the template preference page (Java>Templates).
80
81CodeTemplateContextType.variable.description.todo=Todo task tag
82CodeTemplateContextType.variable.description.packdeclaration=Package declaration of the new type
83CodeTemplateContextType.variable.description.typedeclaration=Generated type declaration
84CodeTemplateContextType.variable.description.getterfieldname=The name of field to set or get
85CodeTemplateContextType.variable.description.getterfieldtype=The type of the field to set or get
86CodeTemplateContextType.variable.description.fieldname=The name of field
87CodeTemplateContextType.variable.description.fieldtype=The type of the field
88CodeTemplateContextType.variable.description.barefieldname=The name of field to set or get without prefix or suffix
89CodeTemplateContextType.variable.description.param=The parameter passed into the setter method
90CodeTemplateContextType.variable.description.typecomment=Content of code template 'typecomment'
91CodeTemplateContextType.variable.description.exceptiontype=The type of the caught exception
92CodeTemplateContextType.variable.description.exceptionvar=The variable name of the caught exception
93CodeTemplateContextType.variable.description.enclosingtype=The type enclosing this method
94CodeTemplateContextType.variable.description.typename=Name of the current type
95CodeTemplateContextType.variable.description.enclosingmethod=The enclosing method
96CodeTemplateContextType.variable.description.bodystatement=Return statement or super call
97CodeTemplateContextType.variable.description.returntype=Return type of the enclosing method
98CodeTemplateContextType.variable.description.tags=Generated Javadoc tags (@param, @return...)
99CodeTemplateContextType.variable.description.seetag=See tag pointing to the overridden method (@see T#m())
100
101CodeTemplateContextType.variable.description.filename=Name of the enclosing compilation unit
102CodeTemplateContextType.variable.description.packagename=Name of the enclosing package
103CodeTemplateContextType.variable.description.projectname=Name of the enclosing project
104
105CodeTemplateContextType.validate.unknownvariable=Variable ''{0}'' is unknown.
106CodeTemplateContextType.validate.missingvariable=Variable ''{0}'' is required.
107CodeTemplateContextType.validate.invalidcomment=Pattern is not a valid Java comment.
108
109
110# strings in default templates
111CodeTemplates.constructorcomment=Comment for created constructors
112CodeTemplates.filecomment=Comment for created Java files
113CodeTemplates.typecomment=Comment for created types
114CodeTemplates.fieldcomment=Comment for fields
115CodeTemplates.nonoverridingcomment=Comment for non-overriding methods
116CodeTemplates.overridecomment=Comment for overriding methods
117CodeTemplates.delegatecomment=Comment for delegate methods
118CodeTemplates.gettercomment=Comment for getter method
119# ! Do not translate ${bare_field_name} !
120CodeTemplates.gettercomment.returntagcontent=the ${bare_field_name}
121CodeTemplates.settercomment=Comment for setter method
122# ! Do not translate ${bare_field_name} !
123CodeTemplates.settercomment.paramtagcontent=the ${bare_field_name} to set
124
125CodeTemplates.newfile=Newly created files
126CodeTemplates.classbody=Code in new class type bodies
127CodeTemplates.interfacebody=Code in new interface type bodies
128CodeTemplates.enumbody=Code in new enum type bodies
129CodeTemplates.annotationbody=Code in new annotation type bodies
130CodeTemplates.catchblock=Code in new catch blocks
131CodeTemplates.methodstub=Code in created method stubs
132CodeTemplates.constructorstub=Code in created constructor stubs
133CodeTemplates.getterstub=Code in created getters
134CodeTemplates.setterstub=Code in created setters
135
136CodeTemplates.overridecomment.nonjd=(non-Javadoc)
137CodeTemplates.delegatecomment.nonjd=(non-Javadoc)
138
139CodeTemplates.catchblock.tododesc=Auto-generated catch block
140CodeTemplates.methodstub.tododesc=Auto-generated method stub
141CodeTemplates.constructorstub.tododesc=Auto-generated constructor stub
142
143SWTTemplates.label=new Label
144SWTTemplates.image=new Image
145SWTTemplates.button=new Button
146SWTTemplates.link=new Link
147SWTTemplates.combo=new Combo
148SWTTemplates.scale=new Scale
149SWTTemplates.spinner=new Spinner
150SWTTemplates.browser=new Browser
151SWTTemplates.datetime=new DateTime
152SWTTemplates.composite=new Composite with GridLayout
153SWTTemplates.scrolledcomposite=new ScrolledComposite
154SWTTemplates.group=new Group with GridLayout
155SWTTemplates.sashform=new SashForm
156SWTTemplates.expandbar=new ExpandBar
157SWTTemplates.expanditem=new ExpandItem for an ExpandBar
158SWTTemplates.tabfolder=new TabFolder
159SWTTemplates.tabitem=new TabItem for a TabFolder
160SWTTemplates.text=new Text
161SWTTemplates.styledtext=new StyledText
162SWTTemplates.stylerange=new StyleRange for a StyledText
163SWTTemplates.list=new List
164SWTTemplates.table=new Table
165SWTTemplates.tablecolumn=new TableColumn for a Table
166SWTTemplates.tableitem=new TableItem for a Table
167SWTTemplates.tree=new Tree
168SWTTemplates.treecolumn=new TreeColumn for a Tree
169SWTTemplates.treeitem=new TreeItem for a Tree
170SWTTemplates.shell=new Shell
171SWTTemplates.mainloop=new top level Shell with event loop
172SWTTemplates.execute=execute a runnable in the UI thread
173SWTTemplates.addlistener=add a listener to a Widget
174SWTTemplates.gridlayout=new GridLayout for a Composites
175SWTTemplates.griddata=new GridData for a Control
176SWTTemplates.toolbar=new ToolBar
177SWTTemplates.toolitem=new ToolItem for a ToolBar