Serialized Form


Package com.puppycrawl.tools.checkstyle

Class com.puppycrawl.tools.checkstyle.AuditEvent implements Serializable

Serialized Fields

mFileName

java.lang.String mFileName
filename event associated with

mLine

int mLine
line event associated with

mColumn

int mColumn
column event associated with

mMessage

java.lang.String mMessage
message of event

Class com.puppycrawl.tools.checkstyle.Configuration implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream aStream)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Extend default deserialization to initialize the RE member variables.
Serialized Fields

mParamPat

java.lang.String mParamPat
pattern to match parameters

mStaticPat

java.lang.String mStaticPat
pattern to match static variables

mStaticFinalPat

java.lang.String mStaticFinalPat
pattern to match static final variables

mMemberPat

java.lang.String mMemberPat
pattern to match member variables

mPublicMemberPat

java.lang.String mPublicMemberPat
pattern to match public member variables

mTypePat

java.lang.String mTypePat
pattern to match type names

mLocalVarPat

java.lang.String mLocalVarPat
pattern to match local variables

mMethodPat

java.lang.String mMethodPat
pattern to match method names

mMaxLineLength

int mMaxLineLength
the maximum line length

mMaxMethodLength

int mMaxMethodLength
the maximum method length

mMaxConstructorLength

int mMaxConstructorLength
the maximum constructor length

mMaxFileLength

int mMaxFileLength
the maximum file length

mAllowTabs

boolean mAllowTabs
whether to allow tabs

mTabWidth

int mTabWidth
the distance between tab stops

mAllowProtected

boolean mAllowProtected
whether to allow protected data

mAllowPackage

boolean mAllowPackage
whether to allow protected data

mAllowNoAuthor

boolean mAllowNoAuthor
whether to allow having no author tag

mJavadocScope

Scope mJavadocScope
visibility scope where Javadoc is checked

mRequirePackageHtml

boolean mRequirePackageHtml
whether javadoc package documentation is required

mIgnoreImports

boolean mIgnoreImports
whether to ignore imports

mIllegalImports

java.util.HashSet mIllegalImports
whether to ignore imports

mIgnoreWhitespace

boolean mIgnoreWhitespace
whether to ignore whitespace

mIgnoreCastWhitespace

boolean mIgnoreCastWhitespace
whether to ignore cast whitespace

mIgnoreBraces

boolean mIgnoreBraces
whether to ignore braces

mIgnorePublicInInterface

boolean mIgnorePublicInInterface
whether to ignore 'public' keyword in interface definitions

mCacheFile

java.lang.String mCacheFile
name of the cache file

mIgnoreImportLength

boolean mIgnoreImportLength
whether to ignore max line length of import statements

mIgnoreLineLengthPat

java.lang.String mIgnoreLineLengthPat
pattern to exclude from line lengh checking

mHeaderLines

java.lang.String[] mHeaderLines
the header lines to check for

mHeaderLinesRegexp

boolean mHeaderLinesRegexp
interpret the header lines as RE

mHeaderIgnoreLineNo

java.util.TreeSet mHeaderIgnoreLineNo
line numbers to ignore in header

mLCurlyMethod

LeftCurlyOption mLCurlyMethod
where to place left curlies on methods

mLCurlyType

LeftCurlyOption mLCurlyType
where to place left curlies on types

mLCurlyOther

LeftCurlyOption mLCurlyOther
where to place left curlies on others

mRCurly

RightCurlyOption mRCurly
where to place right curlies

mParenPadOption

PadOption mParenPadOption
how to pad parenthesis

Class com.puppycrawl.tools.checkstyle.LeftCurlyOption implements Serializable

Serialized Fields

mStrRep

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

Class com.puppycrawl.tools.checkstyle.PadOption implements Serializable

Serialized Fields

mStrRep

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

Class com.puppycrawl.tools.checkstyle.RightCurlyOption implements Serializable

Serialized Fields

mStrRep

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

Class com.puppycrawl.tools.checkstyle.Scope implements Serializable

Serialized Fields

mCode

int mCode
the SCOPECODE_XYZ value of this scope.

mName

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