<!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
<!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
- <module name="RedundantModifier">
- <property name="tokens" value="ANNOTATION_FIELD_DEF,METHOD_DEF,VARIABLE_DEF"/> <!-- adding INTERFACE_DEF produces 3 new errors -->
- </module>
+ <module name="RedundantModifier"/>
<!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
<!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
// ============== Maker classes for the area tree objects =============
- private static interface Maker {
+ private interface Maker {
void startElement(Attributes attributes) throws SAXException;
void endElement();
boolean ignoreCharacters();
* Each event is recorded and will be played once the table is finished, and the final
* number of columns known.
*/
- private static interface Event {
+ private interface Event {
/**
* Plays this event
*
// ============== Element handlers for the intermediate format =============
- private static interface ElementHandler {
+ private interface ElementHandler {
void startElement(Attributes attributes) throws IFException, SAXException;
void endElement() throws IFException;
boolean ignoreCharacters();