Making printer friendly

This commit is contained in:
oburn
2002-12-24 03:34:56 +00:00
parent 7472e9e406
commit a72ec67685
+7 -3
View File
@@ -140,7 +140,8 @@
source file. To run it type
</p>
<pre>
java -classpath checkstyle-all-@CHECKSTYLE_VERSION@.jar com.puppycrawl.tools.checkstyle.gui.Main
java -classpath checkstyle-all-@CHECKSTYLE_VERSION@.jar \
com.puppycrawl.tools.checkstyle.gui.Main
</pre>
<p class="body">
on the command line. Click the button at the bottom of the frame
@@ -268,7 +269,8 @@
{
int methodDefs = ast.getChildCount(TokenTypes.METHOD_DEF);
if (methodDefs > max) {
log(ast.getLineNo(), "too many methods, only " + max + " are allowed");
log(ast.getLineNo(),
"too many methods, only " + max + " are allowed");
}
}
}
@@ -415,7 +417,9 @@
e.g. <span class="code">mycompanychecks.jar</span>. Then run:
</p>
<pre>
java -classpath mycompanychecks.jar -jar checkstyle-all-@CHECKSTYLE_VERSION@ -c config.xml -r .
java -classpath mycompanychecks.jar \
-jar checkstyle-all-@CHECKSTYLE_VERSION@ \
-c config.xml -r .
</pre>
<p class="body">