Serialized Form


Package org.jplate

Class org.jplate.JPlateException extends java.lang.Exception implements Serializable


Package org.jplate.foundation

Class org.jplate.foundation.FoundationException extends JPlateException implements Serializable


Package org.jplate.foundation.exception

Class org.jplate.foundation.exception.AddException extends FoundationException implements Serializable

Class org.jplate.foundation.exception.CloseException extends FoundationException implements Serializable

Class org.jplate.foundation.exception.CreateException extends FoundationException implements Serializable

Class org.jplate.foundation.exception.FindException extends FoundationException implements Serializable

Class org.jplate.foundation.exception.OpenException extends FoundationException implements Serializable

Class org.jplate.foundation.exception.RemoveException extends FoundationException implements Serializable


Package org.jplate.foundation.gof

Class org.jplate.foundation.gof.GOFException extends FoundationException implements Serializable


Package org.jplate.foundation.gof.builder

Class org.jplate.foundation.gof.builder.BuildException extends GOFException implements Serializable


Package org.jplate.foundation.gof.command

Class org.jplate.foundation.gof.command.ExecuteException extends GOFException implements Serializable


Package org.jplate.foundation.gof.cor

Package org.jplate.foundation.gof.cor.impl.defaults

Class org.jplate.foundation.gof.cor.impl.defaults.DefaultChainOfResponsibilityFactory extends AbstractFactory<DefaultChainOfResponsibility<V,P extends ProcessorIfc<V>>> implements Serializable

serialVersionUID: -4408044167698590227L


Package org.jplate.foundation.gof.factory

Package org.jplate.foundation.gof.factory.impl

Class org.jplate.foundation.gof.factory.impl.AbstractContextFactory extends java.lang.Object implements Serializable

Class org.jplate.foundation.gof.factory.impl.AbstractFactory extends java.lang.Object implements Serializable


Package org.jplate.foundation.gof.interpreter

Class org.jplate.foundation.gof.interpreter.InterpreterException extends GOFException implements Serializable


Package org.jplate.foundation.gof.visitor

Class org.jplate.foundation.gof.visitor.VisitException extends GOFException implements Serializable


Package org.jplate.foundation.node

Class org.jplate.foundation.node.NodeException extends FoundationException implements Serializable

Serialized Fields

_node

NodeIfc<BC,LC> _node
The node that caused self to be raised.


Package org.jplate.foundation.node.attribute

Package org.jplate.foundation.node.attribute.impl.defaults

Class org.jplate.foundation.node.attribute.impl.defaults.DefaultAttributeFactory extends AbstractContextFactory<DefaultAttribute<N,V>,N> implements Serializable

serialVersionUID: -3041201445741803606L


Package org.jplate.foundation.node.impl

Class org.jplate.foundation.node.impl.AbstractNode extends java.lang.Object implements Serializable

Serialized Fields

_parent

BranchNodeIfc<BC,LC> _parent
Holds the parent.


_source

SourceIfc<S> _source
Holds the source from which self was generated.


Package org.jplate.foundation.node.impl.defaults

Class org.jplate.foundation.node.impl.defaults.DefaultBranchNode extends AbstractNode<BC,LC> implements Serializable

serialVersionUID: 6258565893060223855L

Serialized Fields

_childList

java.util.List<E> _childList
Child nodes.


_context

java.lang.Object _context
Self's context.

Class org.jplate.foundation.node.impl.defaults.DefaultLeafNode extends AbstractNode<BC,LC> implements Serializable

serialVersionUID: 7696890221214774563L

Serialized Fields

_context

java.lang.Object _context
Self's context.


Package org.jplate.foundation.node.parser

Package org.jplate.foundation.node.tag

Package org.jplate.foundation.node.tag.impl.defaults

Class org.jplate.foundation.node.tag.impl.defaults.DefaultTagContextFactory extends AbstractFactory<DefaultTagContext<T,A extends AttributeIfc<?,?>>> implements Serializable

serialVersionUID: -6294413376890954744L

Serialized Fields

_listFactory

ListFactoryIfc<V> _listFactory
The factory that can create implementations of java.util.List.


Package org.jplate.foundation.parser

Class org.jplate.foundation.parser.JPlateBuildingException extends BuildException implements Serializable

Class org.jplate.foundation.parser.JPlateParsingException extends JPlateException implements Serializable

Serialized Fields

_source

SourceIfc<S> _source
The source from which parsing is being performed.


Package org.jplate.foundation.parser.javacc

Package org.jplate.foundation.processor

Class org.jplate.foundation.processor.ProcessException extends FoundationException implements Serializable

Serialized Fields

_processed

java.lang.Object _processed
The object processed that caused self to be raised.


Package org.jplate.foundation.source

Package org.jplate.foundation.source.impl.defaults

Class org.jplate.foundation.source.impl.defaults.DefaultSource extends java.lang.Object implements Serializable

serialVersionUID: -1569053263759468648L

Serialized Fields

_source

java.lang.Object _source
This is the source from whence something exists.


_line

int _line
This is the line where something exists in source.


_column

int _column
This is the column where something exists in source.


_hashCode

int _hashCode
The hash code.

Class org.jplate.foundation.source.impl.defaults.DefaultSourceFactory extends java.lang.Object implements Serializable

serialVersionUID: -4015873532569324627L


Package org.jplate.foundation.util

Package org.jplate.foundation.util.impl

Class org.jplate.foundation.util.impl.SynchronizedHashMapFactory extends java.lang.Object implements Serializable

serialVersionUID: 8707437958124563036L

Class org.jplate.foundation.util.impl.SynchronizedLinkedListFactory extends java.lang.Object implements Serializable

serialVersionUID: -7285369692062119081L

Class org.jplate.foundation.util.impl.UnsynchronizedHashMapFactory extends java.lang.Object implements Serializable

serialVersionUID: -3819135924500641702L

Class org.jplate.foundation.util.impl.UnsynchronizedLinkedListFactory extends java.lang.Object implements Serializable

serialVersionUID: 5380109993326579319L


Package org.jplate.kvp

Class org.jplate.kvp.KvpException extends JPlateException implements Serializable


Package org.jplate.kvp.impl.defaults

Class org.jplate.kvp.impl.defaults.DefaultKvpFactory extends AbstractFactory<KvpIfc> implements Serializable

serialVersionUID: -8209140481641817513L


Package org.jplate.kvp.parser

Package org.jplate.kvp.parser.impl.defaults

Class org.jplate.kvp.parser.impl.defaults.DefaultKvpParserFactory extends AbstractFactory<DefaultKvpParser<B extends KvpBuilderIfc<?>>> implements Serializable

Class org.jplate.kvp.parser.impl.defaults.ParseException extends java.lang.Exception implements Serializable

Serialized Fields

specialConstructor

boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below).


currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

java.lang.String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

java.lang.String eol
The end of line string for this machine.

Class org.jplate.kvp.parser.impl.defaults.TokenMgrError extends java.lang.Error implements Serializable

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.


Package org.jplate.tabular

Class org.jplate.tabular.TabularException extends JPlateException implements Serializable


Package org.jplate.tabular.cdv.parser

Package org.jplate.tabular.cdv.parser.impl.defaults

Class org.jplate.tabular.cdv.parser.impl.defaults.ParseException extends java.lang.Exception implements Serializable

Serialized Fields

specialConstructor

boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below).


currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

java.lang.String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

java.lang.String eol
The end of line string for this machine.

Class org.jplate.tabular.cdv.parser.impl.defaults.TokenMgrError extends java.lang.Error implements Serializable

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.


Package org.jplate.tabular.csv.parser

Package org.jplate.tabular.csv.parser.impl.defaults

Class org.jplate.tabular.csv.parser.impl.defaults.ParseException extends java.lang.Exception implements Serializable

Serialized Fields

specialConstructor

boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below).


currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

java.lang.String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

java.lang.String eol
The end of line string for this machine.

Class org.jplate.tabular.csv.parser.impl.defaults.TokenMgrError extends java.lang.Error implements Serializable

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.


Package org.jplate.tabular.impl.defaults

Class org.jplate.tabular.impl.defaults.DefaultFieldFactory extends AbstractFactory<FieldIfc> implements Serializable

serialVersionUID: -4736566561720585246L

Class org.jplate.tabular.impl.defaults.DefaultRecordFactory extends AbstractFactory<RecordIfc> implements Serializable

serialVersionUID: 8032253641632824086L

Class org.jplate.tabular.impl.defaults.DefaultRepoFactory extends AbstractFactory<RepoIfc> implements Serializable

serialVersionUID: -5202291317143823229L

Class org.jplate.tabular.impl.defaults.DefaultTableFactory extends AbstractFactory<TableIfc> implements Serializable

serialVersionUID: -1468437269116282734L


Package org.jplate.tabular.parser

Class org.jplate.tabular.parser.FieldCountMismatchException extends JPlateBuildingException implements Serializable

Serialized Fields

_maxFields

int _maxFields

_fieldNumber

int _fieldNumber

Package org.jplate.tabular.tdv.parser

Package org.jplate.tabular.tdv.parser.impl.defaults

Class org.jplate.tabular.tdv.parser.impl.defaults.ParseException extends java.lang.Exception implements Serializable

Serialized Fields

specialConstructor

boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below).


currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

java.lang.String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

java.lang.String eol
The end of line string for this machine.

Class org.jplate.tabular.tdv.parser.impl.defaults.TokenMgrError extends java.lang.Error implements Serializable

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.