Serialized Form

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

Serialization Methods

readResolve

protected java.lang.Object readResolve()
                                throws java.io.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:
java.io.ObjectStreamException - if a deserialization error occurs
Serialized Fields

mStrRep

java.lang.String mStrRep
the string representation of the option


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

Serialized Fields

mFileName

java.lang.String mFileName
filename event associated with


mMessage

LocalizedMessage mMessage
message associated with the event


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


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

Serialized Fields

mCause

java.lang.Throwable mCause
the cause of this exception


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

Serialized Fields

mName

java.lang.String mName
The name of this configuration


mChildren

java.util.ArrayList mChildren
the list of child Configurations


mAttributeMap

java.util.Map mAttributeMap
the map from attribute names to attribute values


Class com.puppycrawl.tools.checkstyle.api.DetailAST extends antlr.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


mBranchTokenTypes

java.util.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.checks.blocks.LeftCurlyOption extends AbstractOption implements Serializable


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

Serialized Fields

mLineSeparator

java.lang.String mLineSeparator
the line separator representation


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


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


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


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


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

Serialization Methods

readResolve

private java.lang.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

java.lang.String mName
the name of this scope.


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

Serialization Methods

readResolve

private java.lang.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

java.lang.String mName
the name of this severity level.


Back to the Checkstyle Home Page