-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidComments.xml
More file actions
32 lines (32 loc) · 1.62 KB
/
AndroidComments.xml
File metadata and controls
32 lines (32 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<templateSet group="AndroidComments">
<template name="fixme" value="// FIXME: $date$ $todo$" description="adds //FIXME" toReformat="true" toShortenFQNames="true">
<variable name="date" expression="date()" defaultValue="" alwaysStopAt="false" />
<variable name="todo" expression="" defaultValue="" alwaysStopAt="true" />
<context>
<option name="JAVA_CODE" value="true" />
<option name="JAVA_STRING" value="true" />
</context>
</template>
<template name="noop" value="/* no-op */" description="indicate that a method does not have any operations" toReformat="true" toShortenFQNames="true">
<context>
<option name="JAVA_STATEMENT" value="true" />
<option name="JAVA_DECLARATION" value="false" />
</context>
</template>
<template name="stopship" value="// STOPSHIP: $date$ $todo$ " description="adds //STOPSHIP" toReformat="true" toShortenFQNames="true">
<variable name="date" expression="date()" defaultValue="" alwaysStopAt="false" />
<variable name="todo" expression="" defaultValue="" alwaysStopAt="true" />
<context>
<option name="JAVA_CODE" value="true" />
<option name="JAVA_STRING" value="true" />
</context>
</template>
<template name="todo" value="// TODO: $date$ $todo$ " description="adds //TODO" toReformat="true" toShortenFQNames="true">
<variable name="date" expression="date()" defaultValue="" alwaysStopAt="false" />
<variable name="todo" expression="" defaultValue="" alwaysStopAt="true" />
<context>
<option name="JAVA_CODE" value="true" />
<option name="JAVA_STRING" value="true" />
</context>
</template>
</templateSet>