Serialized Form


Package com.puppycrawl.tools.checkstyle

Class com.puppycrawl.tools.checkstyle.DefaultConfiguration extends Object implements Serializable

Serialized Fields

mName

String mName
The name of this configuration


mChildren

ArrayList mChildren
the list of child Configurations


mAttributeMap

Map mAttributeMap
the map from attribute names to attribute values


Package com.puppycrawl.tools.checkstyle.api

Class com.puppycrawl.tools.checkstyle.api.AuditEvent extends EventObject implements Serializable

Serialized Fields

mFileName

String mFileName
filename event associated with


mMessage

LocalizedMessage mMessage
message associated with the event

Class com.puppycrawl.tools.checkstyle.api.CheckstyleException extends Exception implements Serializable

Class com.puppycrawl.tools.checkstyle.api.DetailAST extends CommonAST implements Serializable

Serialized Fields

mLineNo

int mLineNo
the line number


mColumnNo

int mColumnNo
the column number


mChildCount

int mChildCount
number of children


mParent

DetailAST mParent
the parent token


mPreviousSibling

DetailAST mPreviousSibling
previous sibling


mBranchTokenTypes

BitSet mBranchTokenTypes
All token types in this branch. Token 'x' (where x is an int) is in this branch if mBranchTokenTypes.get(x) is true.

Class com.puppycrawl.tools.checkstyle.api.Scope extends Object implements Serializable

Serialization Methods

readResolve

private Object readResolve()
Ensures that we don't get multiple instances of one Scope during deserialization. See Section 3.6 of the Java Object Serialization Specification for details.

Serialized Fields

mCode

int mCode
the SCOPECODE_XYZ value of this scope.


mName

String mName
the name of this scope.

Class com.puppycrawl.tools.checkstyle.api.SeverityLevel extends Object implements Serializable

Serialization Methods

readResolve

private Object readResolve()
Ensures that we don't get multiple instances of one SeverityLevel during deserialization. See Section 3.6 of the Java Object Serialization Specification for details.

Serialized Fields

mCode

int mCode
the SEVERITYCODE_XYZ value of this severity level.


mName

String mName
the name of this severity level.


Package com.puppycrawl.tools.checkstyle.checks

Class com.puppycrawl.tools.checkstyle.checks.AbstractOption extends Object implements Serializable

Serialization Methods

readResolve

protected Object readResolve()
                      throws ObjectStreamException
Ensures that we don't get multiple instances of one AbstractOption during deserialization. See Section 3.6 of the Java Object Serialization Specification for details.

Throws:
ObjectStreamException - if a deserialization error occurs
Serialized Fields

mStrRep

String mStrRep
the string representation of the option

Class com.puppycrawl.tools.checkstyle.checks.LineSeparatorOption extends AbstractOption implements Serializable

Serialized Fields

mLineSeparator

String mLineSeparator
the line separator representation


Package com.puppycrawl.tools.checkstyle.checks.blocks

Class com.puppycrawl.tools.checkstyle.checks.blocks.BlockOption extends AbstractOption implements Serializable

Class com.puppycrawl.tools.checkstyle.checks.blocks.LeftCurlyOption extends AbstractOption implements Serializable

Class com.puppycrawl.tools.checkstyle.checks.blocks.RightCurlyOption extends AbstractOption implements Serializable


Package com.puppycrawl.tools.checkstyle.checks.j2ee

Class com.puppycrawl.tools.checkstyle.checks.j2ee.PersistenceOption extends AbstractOption implements Serializable


Package com.puppycrawl.tools.checkstyle.checks.whitespace

Class com.puppycrawl.tools.checkstyle.checks.whitespace.OperatorWrapOption extends AbstractOption implements Serializable

Class com.puppycrawl.tools.checkstyle.checks.whitespace.PadOption extends AbstractOption implements Serializable


Package com.puppycrawl.tools.checkstyle.gui

Class com.puppycrawl.tools.checkstyle.gui.JTreeTable extends JTable implements Serializable

Serialized Fields

tree

JTreeTable.TreeTableCellRenderer tree
A subclass of JTree.

Class com.puppycrawl.tools.checkstyle.gui.ParseTreeInfoPanel extends JPanel implements Serializable

Serialized Fields

mTreeTable

JTreeTable mTreeTable

mParseTreeModel

ParseTreeModel mParseTreeModel

mLastDirectory

File mLastDirectory

mCurrentFile

File mCurrentFile

reloadAction

Action reloadAction

Class com.puppycrawl.tools.checkstyle.gui.TreeTableModelAdapter extends AbstractTableModel implements Serializable

Serialized Fields

mTree

JTree mTree

mTreeTableModel

TreeTableModel mTreeTableModel


Class com.puppycrawl.tools.checkstyle.api.AuditEvent extends EventObject implements Serializable

Serialized Fields

mFileName

String mFileName
filename event associated with


mMessage

LocalizedMessage mMessage
message associated with the event


Class com.puppycrawl.tools.checkstyle.api.CheckstyleException extends Exception implements Serializable


Class com.puppycrawl.tools.checkstyle.DefaultConfiguration extends Object implements Serializable

Serialized Fields

mName

String mName
The name of this configuration


mChildren

ArrayList mChildren
the list of child Configurations


mAttributeMap

Map mAttributeMap
the map from attribute names to attribute values


Class com.puppycrawl.tools.checkstyle.api.DetailAST extends CommonAST implements Serializable

Serialized Fields

mLineNo

int mLineNo
the line number


mColumnNo

int mColumnNo
the column number


mChildCount

int mChildCount
number of children


mParent

DetailAST mParent
the parent token


mPreviousSibling

DetailAST mPreviousSibling
previous sibling


mBranchTokenTypes

BitSet mBranchTokenTypes
All token types in this branch. Token 'x' (where x is an int) is in this branch if mBranchTokenTypes.get(x) is true.


Class com.puppycrawl.tools.checkstyle.api.Scope extends Object implements Serializable

Serialization Methods

readResolve

private Object readResolve()
Ensures that we don't get multiple instances of one Scope during deserialization. See Section 3.6 of the Java Object Serialization Specification for details.

Serialized Fields

mCode

int mCode
the SCOPECODE_XYZ value of this scope.


mName

String mName
the name of this scope.


Class com.puppycrawl.tools.checkstyle.api.SeverityLevel extends Object implements Serializable

Serialization Methods

readResolve

private Object readResolve()
Ensures that we don't get multiple instances of one SeverityLevel during deserialization. See Section 3.6 of the Java Object Serialization Specification for details.

Serialized Fields

mCode

int mCode
the SEVERITYCODE_XYZ value of this severity level.


mName

String mName
the name of this severity level.


Back to the Checkstyle Home Page