...
Treat public static fields as constants and declare them as final. Consider the use of enum types.
Code Block | ||
---|---|---|
| ||
package org.apache.xpath.compiler; public class FunctionTable {public class MyClass { public static final int LEFT = 1; public static final int RIGHT FuncLoader= m_functions2; } |
Code Block | ||
---|---|---|
| ||
... public static final FuncLoader m_functions; ... |
...