From c23d3ef0d5b2fb3fada52687dbdbb52525dcc099 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20K=C3=BChne?= Date: Sun, 20 Jan 2002 08:41:59 +0000 Subject: [PATCH] make it easier to read varformat table when following the links from cmdline.html --- docs/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/index.html b/docs/index.html index 60e212a4b..e39adbc13 100644 --- a/docs/index.html +++ b/docs/index.html @@ -172,22 +172,22 @@ div.tip {margin-left : 5%;margin-right : 5%;padding-left: 2%; padding-right: 2%; Example - static and final + Constants (static and final) ^[A-Z]([A-Z0-9_]*[A-Z0-9])?$
The exception to the rule is for serialVersionUID. public static final int MAX_ROWS = 2; - static only + Static variables (static only) ^[a-z][a-zA-Z0-9]*$ private static int numCreated = 0; - non static + Members (non static) ^[a-z][a-zA-Z0-9]*$ private int mySize = 0; - non static public + Public members (non static public) ^f[A-Z][a-zA-Z0-9]*$ public int fCMPField;