/[classpath]/classpath/scripts/jalopy-gnu.xml
ViewVC logotype

Diff of /classpath/scripts/jalopy-gnu.xml

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by tromey, Mon Sep 20 18:34:43 2004 UTC revision 1.2 by mkoch, Tue Sep 21 12:07:06 2004 UTC
# Line 1  Line 1 
1  <?xml version="1.0" encoding="UTF-8"?>  <?xml version="1.0" encoding="UTF-8"?>
2  <jalopy>  <jalopy>
3      <general>      <general>
4          <compliance>          <compliance>
5              <version>14</version>              <version>14</version>
6          </compliance>          </compliance>
7          <style>          <style>
8              <description>GNU Java Coding Convention</description>              <description>GNU Java Coding Convention</description>
9              <name>GNU</name>              <name>GNU</name>
10          </style>          </style>
11      </general>      </general>
12      <inspector>      <inspector>
13          <enable>false</enable>          <enable>false</enable>
14          <naming>          <naming>
15              <classes>              <classes>
16                  <abstract>[A-Z][a-zA-Z0-9]+</abstract>                  <abstract>[A-Z][a-zA-Z0-9]+</abstract>
17                  <general>[A-Z][a-zA-Z0-9]+</general>                  <general>[A-Z][a-zA-Z0-9]+</general>
18              </classes>              </classes>
19              <fields>              <fields>
20                  <default>[a-z][\w]+</default>                  <default>[a-z][\w]+</default>
21                  <defaultStatic>[a-z][\w]+</defaultStatic>                  <defaultStatic>[a-z][\w]+</defaultStatic>
22                  <defaultStaticFinal>[a-zA-Z][\w]+</defaultStaticFinal>                  <defaultStaticFinal>[a-zA-Z][\w]+</defaultStaticFinal>
23                  <private>[a-z][\w]+</private>                  <private>[a-z][\w]+</private>
24                  <privateStatic>[a-z][\w]+</privateStatic>                  <privateStatic>[a-z][\w]+</privateStatic>
25                  <privateStaticFinal>[a-zA-Z][\w]+</privateStaticFinal>                  <privateStaticFinal>[a-zA-Z][\w]+</privateStaticFinal>
26                  <protected>[a-z][\w]+</protected>                  <protected>[a-z][\w]+</protected>
27                  <protectedStatic>[a-z][\w]+</protectedStatic>                  <protectedStatic>[a-z][\w]+</protectedStatic>
28                  <protectedStaticFinal>[a-zA-Z][\w]+</protectedStaticFinal>                  <protectedStaticFinal>[a-zA-Z][\w]+</protectedStaticFinal>
29                  <public>[a-z][\w]+</public>                  <public>[a-z][\w]+</public>
30                  <publicStatic>[a-z][\w]+</publicStatic>                  <publicStatic>[a-z][\w]+</publicStatic>
31                  <publicStaticFinal>[a-zA-Z][\w]+</publicStaticFinal>                  <publicStaticFinal>[a-zA-Z][\w]+</publicStaticFinal>
32              </fields>              </fields>
33              <interfaces>[A-Z][a-zA-Z0-9]+</interfaces>              <interfaces>[A-Z][a-zA-Z0-9]+</interfaces>
34              <labels>\w+</labels>              <labels>\w+</labels>
35              <methods>              <methods>
36                  <default>[a-z][\w]+</default>                  <default>[a-z][\w]+</default>
37                  <defaultStatic>[a-z][\w]+</defaultStatic>                  <defaultStatic>[a-z][\w]+</defaultStatic>
38                  <defaultStaticFinal>[a-z][\w]+</defaultStaticFinal>                  <defaultStaticFinal>[a-z][\w]+</defaultStaticFinal>
39                  <private>[a-z][\w]+</private>                  <private>[a-z][\w]+</private>
40                  <privateStatic>[a-z][\w]+</privateStatic>                  <privateStatic>[a-z][\w]+</privateStatic>
41                  <privateStaticFinal>[a-z][\w]+</privateStaticFinal>                  <privateStaticFinal>[a-z][\w]+</privateStaticFinal>
42                  <protected>[a-z][\w]+</protected>                  <protected>[a-z][\w]+</protected>
43                  <protectedStatic>[a-z][\w]+</protectedStatic>                  <protectedStatic>[a-z][\w]+</protectedStatic>
44                  <protectedStaticFinal>[a-z][\w]+</protectedStaticFinal>                  <protectedStaticFinal>[a-z][\w]+</protectedStaticFinal>
45                  <public>[a-z][\w]+</public>                  <public>[a-z][\w]+</public>
46                  <publicStatic>[a-z][\w]+</publicStatic>                  <publicStatic>[a-z][\w]+</publicStatic>
47                  <publicStaticFinal>[a-z][\w]+</publicStaticFinal>                  <publicStaticFinal>[a-z][\w]+</publicStaticFinal>
48              </methods>              </methods>
49              <packages>[a-z]+(?:\.[a-z]+)*</packages>              <packages>[a-z]+(?:\.[a-z]+)*</packages>
50              <parameters>              <parameters>
51                  <default>[a-z][\w]+</default>                  <default>[a-z][\w]+</default>
52                  <final>[a-z][\w]+</final>                  <final>[a-z][\w]+</final>
53              </parameters>              </parameters>
54              <variables>[a-z][\w]*</variables>              <variables>[a-z][\w]*</variables>
55          </naming>          </naming>
56          <tips>          <tips>
57              <adhereToNamingConvention>false</adhereToNamingConvention>              <adhereToNamingConvention>false</adhereToNamingConvention>
58              <alwaysOverrideEquals>false</alwaysOverrideEquals>              <alwaysOverrideEquals>false</alwaysOverrideEquals>
59              <alwaysOverrideHashCode>false</alwaysOverrideHashCode>              <alwaysOverrideHashCode>false</alwaysOverrideHashCode>
60              <avoidThreadGroups>false</avoidThreadGroups>              <avoidThreadGroups>false</avoidThreadGroups>
61              <declareCollectionComment>false</declareCollectionComment>              <declareCollectionComment>false</declareCollectionComment>
62              <dontIgnoreExceptions>false</dontIgnoreExceptions>              <dontIgnoreExceptions>false</dontIgnoreExceptions>
63              <dontSubstituteObjectEquals>false</dontSubstituteObjectEquals>              <dontSubstituteObjectEquals>false</dontSubstituteObjectEquals>
64              <neverDeclareException>false</neverDeclareException>              <neverDeclareException>false</neverDeclareException>
65              <neverDeclareThrowable>false</neverDeclareThrowable>              <neverDeclareThrowable>false</neverDeclareThrowable>
66              <neverInvokeWaitOutsideLoop>false</neverInvokeWaitOutsideLoop>              <neverInvokeWaitOutsideLoop>false</neverInvokeWaitOutsideLoop>
67              <neverReturnZeroArrays>false</neverReturnZeroArrays>              <neverReturnZeroArrays>false</neverReturnZeroArrays>
68              <neverUseEmptyFinally>false</neverUseEmptyFinally>              <neverUseEmptyFinally>false</neverUseEmptyFinally>
69              <obeyContractEquals>false</obeyContractEquals>              <obeyContractEquals>false</obeyContractEquals>
70              <overrideToString>false</overrideToString>              <overrideToString>false</overrideToString>
71              <referToObjectsByInterface>false</referToObjectsByInterface>              <referToObjectsByInterface>false</referToObjectsByInterface>
72              <replaceStructureWithClass>false</replaceStructureWithClass>              <replaceStructureWithClass>false</replaceStructureWithClass>
73              <stringLiterallI18n>false</stringLiterallI18n>              <stringLiterallI18n>false</stringLiterallI18n>
74              <useInterfaceOnlyForTypes>false</useInterfaceOnlyForTypes>              <useInterfaceOnlyForTypes>false</useInterfaceOnlyForTypes>
75              <wrongCollectionComment>false</wrongCollectionComment>              <wrongCollectionComment>false</wrongCollectionComment>
76          </tips>          </tips>
77      </inspector>      </inspector>
78      <internal>      <internal>
79          <version>6</version>          <version>6</version>
80      </internal>      </internal>
81      <messages>      <messages>
82          <priority>          <priority>
83              <general>30000</general>              <general>30000</general>
84              <parser>30000</parser>              <parser>30000</parser>
85              <parserJavadoc>30000</parserJavadoc>              <parserJavadoc>30000</parserJavadoc>
86              <printer>30000</printer>              <printer>30000</printer>
87              <printerJavadoc>30000</printerJavadoc>              <printerJavadoc>30000</printerJavadoc>
88              <transform>30000</transform>              <transform>30000</transform>
89          </priority>          </priority>
90          <showErrorStackTrace>true</showErrorStackTrace>          <showErrorStackTrace>true</showErrorStackTrace>
91      </messages>      </messages>
92      <misc>      <misc>
93          <threadCount>1</threadCount>          <threadCount>1</threadCount>
94      </misc>      </misc>
95      <printer>      <printer>
96          <alignment>          <alignment>
97              <methodCallChain>true</methodCallChain>              <methodCallChain>true</methodCallChain>
98              <parameterMethodDeclaration>false</parameterMethodDeclaration>              <parameterMethodDeclaration>false</parameterMethodDeclaration>
99              <ternaryOperator>true</ternaryOperator>              <ternaryOperator>true</ternaryOperator>
100              <variableAssignment>false</variableAssignment>              <variableAssignment>false</variableAssignment>
101              <variableIdentifier>false</variableIdentifier>              <variableIdentifier>false</variableIdentifier>
102          </alignment>          </alignment>
103          <backup>          <backup>
104              <directory>bak</directory>              <directory>bak</directory>
105              <level>0</level>              <level>0</level>
106          </backup>          </backup>
107          <blanklines>          <blanklines>
108              <after>              <after>
109                  <block>0</block>                  <block>0</block>
110                  <braceLeft>0</braceLeft>                  <braceLeft>0</braceLeft>
111                  <class>1</class>                  <class>1</class>
112                  <declaration>0</declaration>                  <declaration>0</declaration>
113                  <footer>1</footer>                  <footer>1</footer>
114                  <header>1</header>                  <header>1</header>
115                  <interface>1</interface>                  <interface>1</interface>
116                  <lastImport>2</lastImport>                  <lastImport>2</lastImport>
117                  <method>1</method>                  <method>1</method>
118                  <package>1</package>                  <package>1</package>
119              </after>              </after>
120              <before>              <before>
121                  <block>0</block>                  <block>0</block>
122                  <braceRight>0</braceRight>                  <braceRight>0</braceRight>
123                  <caseBlock>0</caseBlock>                  <caseBlock>0</caseBlock>
124                  <comment>                  <comment>
125                      <javadoc>1</javadoc>                      <javadoc>1</javadoc>
126                      <multiline>0</multiline>                      <multiline>0</multiline>
127                      <singleline>0</singleline>                      <singleline>0</singleline>
128                  </comment>                  </comment>
129                  <controlStatement>0</controlStatement>                  <controlStatement>0</controlStatement>
130                  <declaration>0</declaration>                  <declaration>0</declaration>
131                  <footer>0</footer>                  <footer>0</footer>
132                  <header>0</header>                  <header>0</header>
133              </before>              </before>
134              <keepUpTo>1</keepUpTo>              <keepUpTo>1</keepUpTo>
135          </blanklines>          </blanklines>
136          <braces>          <braces>
137              <empty>              <empty>
138                  <cuddle>false</cuddle>                  <cuddle>false</cuddle>
139                  <insertStatement>false</insertStatement>                  <insertStatement>false</insertStatement>
140              </empty>              </empty>
141              <insert>              <insert>
142                  <dowhile>false</dowhile>                  <dowhile>false</dowhile>
143                  <for>false</for>                  <for>false</for>
144                  <ifelse>false</ifelse>                  <ifelse>false</ifelse>
145                  <while>false</while>                  <while>false</while>
146              </insert>              </insert>
147              <remove>              <remove>
148                  <block>true</block>                  <block>true</block>
149                  <dowhile>true</dowhile>                  <dowhile>true</dowhile>
150                  <for>true</for>                  <for>true</for>
151                  <ifelse>true</ifelse>                  <ifelse>true</ifelse>
152                  <while>true</while>                  <while>true</while>
153              </remove>              </remove>
154              <treatDifferent>              <treatDifferent>
155                  <methodClass>true</methodClass>                  <methodClass>true</methodClass>
156                  <methodClassIfWrapped>false</methodClassIfWrapped>                  <methodClassIfWrapped>false</methodClassIfWrapped>
157              </treatDifferent>              </treatDifferent>
158          </braces>          </braces>
159          <chunks>          <chunks>
160              <blanklines>true</blanklines>              <blanklines>true</blanklines>
161              <comments>true</comments>              <comments>true</comments>
162          </chunks>          </chunks>
163          <comments>          <comments>
164              <format>              <format>
165                  <multiline>false</multiline>                  <multiline>false</multiline>
166              </format>              </format>
167              <javadoc>              <javadoc>
168                  <check>                  <check>
169                      <innerclass>false</innerclass>                      <innerclass>false</innerclass>
170                      <tags>false</tags>                      <tags>false</tags>
171                      <throwsTags>false</throwsTags>                      <throwsTags>false</throwsTags>
172                  </check>                  </check>
173                  <fieldsShort>false</fieldsShort>                  <fieldsShort>false</fieldsShort>
174                  <generate>                  <generate>
175                      <class>0</class>                      <class>0</class>
176                      <constructor>0</constructor>                      <constructor>0</constructor>
177                      <field>0</field>                      <field>0</field>
178                      <method>0</method>                      <method>0</method>
179                  </generate>                  </generate>
180                  <parseComments>false</parseComments>                  <parseComments>false</parseComments>
181                  <tags>                  <tags>
182                      <in-line />                      <in-line />
183                      <standard />                      <standard />
184                  </tags>                  </tags>
185                  <templates>                  <templates>
186                      <method>                      <method>
187                          <bottom> */</bottom>                          <bottom> */</bottom>
188                          <exception> * @throws $exceptionType$ DOCUMENT ME!</exception>                          <exception> * @throws $exceptionType$ DOCUMENT ME!</exception>
189                          <param> * @param $paramType$ DOCUMENT ME!</param>                          <param> * @param $paramType$ DOCUMENT ME!</param>
190                          <return> * @return DOCUMENT ME!</return>                          <return> * @return DOCUMENT ME!</return>
191                          <top>/**| * DOCUMENT ME!</top>                          <top>/**| * DOCUMENT ME!</top>
192                      </method>                      </method>
193                  </templates>                  </templates>
194              </javadoc>              </javadoc>
195              <remove>              <remove>
196                  <javadoc>false</javadoc>                  <javadoc>false</javadoc>
197                  <multiline>false</multiline>                  <multiline>false</multiline>
198                  <singleline>false</singleline>                  <singleline>false</singleline>
199              </remove>              </remove>
200              <separator>              <separator>
201                  <fillCharacter>-</fillCharacter>                  <fillCharacter>-</fillCharacter>
202                  <insert>false</insert>                  <insert>false</insert>
203                  <insertRecursive>false</insertRecursive>                  <insertRecursive>false</insertRecursive>
204                  <text>                  <text>
205                      <class>Inner Classes</class>                      <class>Inner Classes</class>
206                      <constructor>Constructors</constructor>                      <constructor>Constructors</constructor>
207                      <field>Instance fields</field>                      <field>Instance fields</field>
208                      <initializer>Instance initializers</initializer>                      <initializer>Instance initializers</initializer>
209                      <interface>Inner Interfaces</interface>                      <interface>Inner Interfaces</interface>
210                      <method>Methods</method>                      <method>Methods</method>
211                      <static>Static fields/initializers</static>                      <static>Static fields/initializers</static>
212                  </text>                  </text>
213              </separator>              </separator>
214          </comments>          </comments>
215          <environment />          <environment />
216          <footer>          <footer>
217              <keys />              <keys />
218              <smartMode>0</smartMode>              <smartMode>0</smartMode>
219              <use>false</use>              <use>false</use>
220          </footer>          </footer>
221          <header>          <header>
222              <keys />              <keys />
223              <smartMode>0</smartMode>              <smartMode>0</smartMode>
224              <use>false</use>              <use>false</use>
225          </header>          </header>
226          <history>          <history>
227              <policy>disabled</policy>              <policy>disabled</policy>
228          </history>          </history>
229          <imports>          <imports>
230              <grouping>              <grouping>
231                  <defaultDepth>0</defaultDepth>                  <defaultDepth>0</defaultDepth>
232                  <packages>*:0|gnu:2|java:2|javax:2</packages>                  <packages>*:0|gnu:2|java:2|javax:2</packages>
233              </grouping>              </grouping>
234              <policy>disabled</policy>              <policy>disabled</policy>
235              <sort>true</sort>              <sort>true</sort>
236          </imports>          </imports>
237          <indentation>          <indentation>
238              <caseFromSwitch>true</caseFromSwitch>              <caseFromSwitch>true</caseFromSwitch>
239              <continuation>              <continuation>
240                  <block>true</block>                  <block>true</block>
241                  <operator>true</operator>                  <operator>true</operator>
242              </continuation>              </continuation>
243              <firstColumnComments>false</firstColumnComments>              <firstColumnComments>false</firstColumnComments>
244              <label>true</label>              <label>true</label>
245              <policy>              <policy>
246                  <deep>true</deep>                  <deep>true</deep>
247              </policy>              </policy>
248              <sizes>              <sizes>
249                  <braceCuddled>1</braceCuddled>                  <braceCuddled>1</braceCuddled>
250                  <braceLeft>2</braceLeft>                  <braceLeft>2</braceLeft>
251                  <braceRight>2</braceRight>                  <braceRight>2</braceRight>
252                  <braceRightAfter>0</braceRightAfter>                  <braceRightAfter>0</braceRightAfter>
253                  <continuation>0</continuation>                  <continuation>0</continuation>
254                  <deep>55</deep>                  <deep>55</deep>
255                  <extends>-1</extends>                  <extends>-1</extends>
256                  <general>2</general>                  <general>2</general>
257                  <implements>-1</implements>                  <implements>-1</implements>
258                  <leading>0</leading>                  <leading>0</leading>
259                  <tabs>8</tabs>                  <tabs>8</tabs>
260                  <throws>-1</throws>                  <throws>-1</throws>
261                  <trailingComment>1</trailingComment>                  <trailingComment>1</trailingComment>
262              </sizes>              </sizes>
263              <tabs>              <tabs>
264                  <enable>true</enable>                  <enable>true</enable>
265                  <onlyLeading>true</onlyLeading>                  <onlyLeading>true</onlyLeading>
266              </tabs>              </tabs>
267          </indentation>          </indentation>
268          <misc>          <misc>
269              <arrayBracketsAfterIdent>false</arrayBracketsAfterIdent>              <arrayBracketsAfterIdent>false</arrayBracketsAfterIdent>
270              <forceFormatting>false</forceFormatting>              <forceFormatting>false</forceFormatting>
271              <insertExpressionParentheses>false</insertExpressionParentheses>              <insertExpressionParentheses>false</insertExpressionParentheses>
272              <insertLoggingConditional>false</insertLoggingConditional>              <insertLoggingConditional>false</insertLoggingConditional>
273              <insertTrailingNewline>true</insertTrailingNewline>              <insertTrailingNewline>true</insertTrailingNewline>
274              <insertUID>false</insertUID>              <insertUID>false</insertUID>
275          </misc>          </misc>
276          <sorting>          <sorting>
277              <declaration>              <declaration>
278                  <class>false</class>                  <class>false</class>
279                  <constructor>false</constructor>                  <constructor>false</constructor>
280                  <enable>false</enable>                  <enable>false</enable>
281                  <interface>false</interface>                  <interface>false</interface>
282                  <method>false</method>                  <method>false</method>
283                  <order>static|field|initializer|constructor|method|interface|class</order>                  <order>static|field|initializer|constructor|method|interface|class</order>
284                  <variable>false</variable>                  <variable>false</variable>
285              </declaration>              </declaration>
286              <modifier>              <modifier>
287                  <enable>true</enable>                  <enable>true</enable>
288                  <order>public|protected|private|abstract|static|final|synchronized|transient|volatile|native|strictfp</order>                  <order>public|protected|private|abstract|static|final|synchronized|transient|volatile|native|strictfp</order>
289              </modifier>              </modifier>
290          </sorting>          </sorting>
291          <whitespace>          <whitespace>
292              <after>              <after>
293                  <comma>true</comma>                  <comma>true</comma>
294                  <semicolon>true</semicolon>                  <semicolon>true</semicolon>
295                  <typeCast>true</typeCast>                  <typeCast>true</typeCast>
296              </after>              </after>
297              <before>              <before>
298                  <braces>true</braces>                  <braces>true</braces>
299                  <brackets>false</brackets>                  <brackets>false</brackets>
300                  <bracketsTypes>false</bracketsTypes>                  <bracketsTypes>false</bracketsTypes>
301                  <caseColon>false</caseColon>                  <caseColon>false</caseColon>
302                  <operator>                  <operator>
303                      <not>true</not>                      <not>true</not>
304                  </operator>                  </operator>
305                  <parentheses>                  <parentheses>
306                      <methodCall>false</methodCall>                      <methodCall>false</methodCall>
307                      <methodDeclaration>false</methodDeclaration>                      <methodDeclaration>false</methodDeclaration>
308                      <statement>true</statement>                      <statement>true</statement>
309                  </parentheses>                  </parentheses>
310              </before>              </before>
311              <padding>              <padding>
312                  <braces>true</braces>                  <braces>true</braces>
313                  <brackets>false</brackets>                  <brackets>false</brackets>
314                  <operator>                  <operator>
315                      <assignment>true</assignment>                      <assignment>true</assignment>
316                      <bitwise>true</bitwise>                      <bitwise>true</bitwise>
317                      <logical>true</logical>                      <logical>true</logical>
318                      <mathematical>true</mathematical>                      <mathematical>true</mathematical>
319                      <relational>true</relational>                      <relational>true</relational>
320                      <shift>true</shift>                      <shift>true</shift>
321                  </operator>                  </operator>
322                  <parenthesis>false</parenthesis>                  <parenthesis>false</parenthesis>
323                  <typeCast>false</typeCast>                  <typeCast>false</typeCast>
324              </padding>              </padding>
325          </whitespace>          </whitespace>
326          <wrapping>          <wrapping>
327              <always>              <always>
328                  <after>                  <after>
329                      <arrayElement>0</arrayElement>                      <arrayElement>0</arrayElement>
330                      <braceRight>true</braceRight>                      <braceRight>true</braceRight>
331                      <extendsTypes>false</extendsTypes>                      <extendsTypes>false</extendsTypes>
332                      <implementsTypes>false</implementsTypes>                      <implementsTypes>false</implementsTypes>
333                      <label>true</label>                      <label>true</label>
334                      <methodCallChained>false</methodCallChained>                      <methodCallChained>false</methodCallChained>
335                      <ternaryOperator>                      <ternaryOperator>
336                          <first>false</first>                          <first>false</first>
337                          <second>false</second>                          <second>false</second>
338                      </ternaryOperator>                      </ternaryOperator>
339                      <throwsTypes>false</throwsTypes>                      <throwsTypes>false</throwsTypes>
340                  </after>                  </after>
341                  <before>                  <before>
342                      <braceLeft>true</braceLeft>                      <braceLeft>true</braceLeft>
343                      <extends>false</extends>                      <extends>false</extends>
344                      <implements>false</implements>                      <implements>false</implements>
345                      <throws>false</throws>                      <throws>false</throws>
346                  </before>                  </before>
347                  <parameter>                  <parameter>
348                      <methodCall>false</methodCall>                      <methodCall>false</methodCall>
349                      <methodCallNested>false</methodCallNested>                      <methodCallNested>false</methodCallNested>
350                      <methodDeclaration>false</methodDeclaration>                      <methodDeclaration>false</methodDeclaration>
351                  </parameter>                  </parameter>
352              </always>              </always>
353              <general>              <general>
354                  <beforeOperator>true</beforeOperator>                  <beforeOperator>true</beforeOperator>
355                  <enable>true</enable>                  <enable>true</enable>
356                  <lineLength>79</lineLength>                  <lineLength>79</lineLength>
357              </general>              </general>
358              <ondemand>              <ondemand>
359                  <after>                  <after>
360                      <assignment>false</assignment>                      <assignment>false</assignment>
361                      <leftParenthesis>false</leftParenthesis>                      <leftParenthesis>false</leftParenthesis>
362                      <parameter>false</parameter>                      <parameter>false</parameter>
363                      <types>                      <types>
364                          <extends>false</extends>                          <extends>false</extends>
365                          <implements>false</implements>                          <implements>false</implements>
366                          <throws>false</throws>                          <throws>false</throws>
367                      </types>                      </types>
368                  </after>                  </after>
369                  <before>                  <before>
370                      <rightParenthesis>false</rightParenthesis>                      <rightParenthesis>false</rightParenthesis>
371                  </before>                  </before>
372                  <groupingParentheses>false</groupingParentheses>                  <groupingParentheses>false</groupingParentheses>
373              </ondemand>              </ondemand>
374          </wrapping>          </wrapping>
375      </printer>      </printer>
376  </jalopy>  </jalopy>
377    

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26