Serialized Form


Package com.vaadin.sass.internal

Class com.vaadin.sass.internal.ScssStylesheet extends Node implements Serializable

serialVersionUID: 3849790204404961608L

Serialized Fields

file

File file

charset

String charset

resolvers

List<E> resolvers

Package com.vaadin.sass.internal.expression.exception

Class com.vaadin.sass.internal.expression.exception.ArithmeticException extends RuntimeException implements Serializable

Class com.vaadin.sass.internal.expression.exception.IncompatibleUnitsException extends ArithmeticException implements Serializable


Package com.vaadin.sass.internal.parser

Class com.vaadin.sass.internal.parser.ActualArgumentList extends Object implements Serializable

Serialized Fields

arglist

ArgumentList arglist

variableArgument

SassListItem variableArgument

Class com.vaadin.sass.internal.parser.ArgumentList extends SassList implements Serializable

Serialized Fields

namedVariables

List<E> namedVariables

Class com.vaadin.sass.internal.parser.FormalArgumentList extends Object implements Serializable

Serialized Fields

arglist

ArrayList<E> arglist

variableArgumentName

String variableArgumentName

Class com.vaadin.sass.internal.parser.JumpException extends RuntimeException implements Serializable

serialVersionUID: -2010286909393046205L

Class com.vaadin.sass.internal.parser.LexicalUnitImpl extends Object implements Serializable

serialVersionUID: -6649833716809789399L

Serialized Fields

type

short type

line

int line

column

int column

i

int i

f

float f

dimension

short dimension

sdimension

String sdimension

s

String s

fname

String fname

params

ActualArgumentList params

Class com.vaadin.sass.internal.parser.MediaListImpl extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

array

String[] array

current

int current

Class com.vaadin.sass.internal.parser.ParseException extends org.w3c.css.sac.CSSException implements Serializable

serialVersionUID: -8556588037264585977L

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).


currentUnit

SassListItem currentUnit
When not using a special constructor, if the current unit is not null, it is used to determine the location of the exception in the parsed file.


currentNode

Node currentNode
When not using a special constructor, if the current node is not null, it is used to determine the location of the exception in the parsed file.


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

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

String eol
The end of line string for this machine.

Class com.vaadin.sass.internal.parser.SassExpression extends Object implements Serializable

Serialized Fields

items

List<E> items

line

int line

column

int column

Class com.vaadin.sass.internal.parser.SassList extends Object implements Serializable

Serialized Fields

line

int line

column

int column

separator

SassList.Separator separator

items

List<E> items

Class com.vaadin.sass.internal.parser.SCSSParseException extends ParseException implements Serializable

Serialized Fields

parseException

ParseException parseException

fileName

String fileName

Class com.vaadin.sass.internal.parser.Token extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

kind

int kind
An integer that describes the kind of this token. This numbering system is determined by JavaCCParser, and a table of these numbers is stored in the file ...Constants.java.


beginLine

int beginLine
The line number of the first character of this Token.


beginColumn

int beginColumn
The column number of the first character of this Token.


endLine

int endLine
The line number of the last character of this Token.


endColumn

int endColumn
The column number of the last character of this Token.


image

String image
The string image of the token.


next

Token next
A reference to the next regular (non-special) token from the input stream. If this is the last token from the input stream, or if the token manager has not read tokens beyond this one, this field is set to null. This is true only if this token is also a regular token. Otherwise, see below for a description of the contents of this field.


specialToken

Token specialToken
This field is used to access special tokens that occur prior to this token, but after the immediately preceding regular (non-special) token. If there are no such special tokens, this field is set to null. When there are more than one such special token, this field refers to the last of these special tokens, which in turn refers to the next previous special token through its specialToken field, and so on until the first special token (whose specialToken field is null). The next fields of special tokens refer to other special tokens that immediately follow it (without an intervening regular token). If there is no such token, this field is null.

Class com.vaadin.sass.internal.parser.TokenMgrError extends Error implements Serializable

serialVersionUID: 1L

Serialized Fields

errorCode

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


Package com.vaadin.sass.internal.resolver

Class com.vaadin.sass.internal.resolver.AbstractResolver extends Object implements Serializable

Class com.vaadin.sass.internal.resolver.ClassloaderResolver extends AbstractResolver implements Serializable

Class com.vaadin.sass.internal.resolver.FilesystemResolver extends AbstractResolver implements Serializable

Serialized Fields

customPaths

String[] customPaths

Package com.vaadin.sass.internal.selector

Class com.vaadin.sass.internal.selector.AttributeSelector extends SimpleSelector implements Serializable

Serialized Fields

attribute

String attribute

matchRelation

AttributeSelector.MatchRelation matchRelation

value

String value

Class com.vaadin.sass.internal.selector.ClassSelector extends SimpleSelector implements Serializable

Serialized Fields

classValue

String classValue

Class com.vaadin.sass.internal.selector.IdSelector extends SimpleSelector implements Serializable

Serialized Fields

value

String value

Class com.vaadin.sass.internal.selector.ParentSelector extends TypeSelector implements Serializable

Class com.vaadin.sass.internal.selector.PlaceholderSelector extends SimpleSelector implements Serializable

Serialized Fields

value

String value

Class com.vaadin.sass.internal.selector.PseudoClassSelector extends SimpleSelector implements Serializable

Serialized Fields

pseudoClass

String pseudoClass

argument

String argument

Class com.vaadin.sass.internal.selector.PseudoElementSelector extends SimpleSelector implements Serializable

Serialized Fields

pseudoElement

String pseudoElement

Class com.vaadin.sass.internal.selector.Selector extends Object implements Serializable

Serialized Fields

parts

List<E> parts

Class com.vaadin.sass.internal.selector.SelectorSet extends LinkedHashSet<Selector> implements Serializable

Class com.vaadin.sass.internal.selector.SimpleSelector extends Object implements Serializable

Class com.vaadin.sass.internal.selector.SimpleSelectorSequence extends ArrayList<SimpleSelector> implements Serializable

Class com.vaadin.sass.internal.selector.TypeSelector extends SimpleSelector implements Serializable

Serialized Fields

localName

String localName

Class com.vaadin.sass.internal.selector.UniversalSelector extends TypeSelector implements Serializable


Package com.vaadin.sass.internal.tree

Class com.vaadin.sass.internal.tree.BlockNode extends Node implements Serializable

serialVersionUID: 5742962631468325048L

Serialized Fields

selectorList

List<E> selectorList

Class com.vaadin.sass.internal.tree.CommentNode extends Node implements Serializable

Serialized Fields

comment

String comment

Class com.vaadin.sass.internal.tree.ContentNode extends Node implements Serializable

Class com.vaadin.sass.internal.tree.DefNode extends Node implements Serializable

Serialized Fields

name

String name

arglist

FormalArgumentList arglist

Class com.vaadin.sass.internal.tree.ExtendNode extends Node implements Serializable

serialVersionUID: 3301805078983796878L

Serialized Fields

list

List<E> list

optional

boolean optional

Class com.vaadin.sass.internal.tree.FontFaceNode extends Node implements Serializable

Class com.vaadin.sass.internal.tree.FunctionDefNode extends DefNode implements Serializable

Class com.vaadin.sass.internal.tree.FunctionNode extends NodeWithVariableArguments implements Serializable

serialVersionUID: -5383104165955523923L

Serialized Fields

def

FunctionDefNode def

Class com.vaadin.sass.internal.tree.ImportNode extends Node implements Serializable

serialVersionUID: 5671255892282668438L

Serialized Fields

uri

String uri

ml

org.w3c.css.sac.SACMediaList ml

isURL

boolean isURL

Class com.vaadin.sass.internal.tree.KeyframeSelectorNode extends Node implements Serializable

Serialized Fields

selector

String selector

Class com.vaadin.sass.internal.tree.KeyframesNode extends Node implements Serializable

Serialized Fields

keyframeName

String keyframeName

animationName

String animationName

Class com.vaadin.sass.internal.tree.MediaNode extends Node implements Serializable

serialVersionUID: 2502097081457509523L

Serialized Fields

media

org.w3c.css.sac.SACMediaList media

Class com.vaadin.sass.internal.tree.MicrosoftRuleNode extends Node implements Serializable

Serialized Fields

name

String name

value

String value

Class com.vaadin.sass.internal.tree.MixinDefNode extends DefNode implements Serializable

serialVersionUID: 5469294053247343948L

Class com.vaadin.sass.internal.tree.MixinNode extends NodeWithVariableArguments implements Serializable

serialVersionUID: 4725008226813110658L

Class com.vaadin.sass.internal.tree.NestPropertiesNode extends Node implements Serializable

serialVersionUID: 3671253315690598308L

Serialized Fields

name

String name

Class com.vaadin.sass.internal.tree.Node extends Object implements Serializable

serialVersionUID: 5914711715839294816L

Serialized Fields

children

ArrayList<E> children

parentNode

Node parentNode

Class com.vaadin.sass.internal.tree.NodeWithVariableArguments extends Node implements Serializable

Serialized Fields

arglist

ActualArgumentList arglist

name

String name

Class com.vaadin.sass.internal.tree.ReturnNode extends Node implements Serializable

Serialized Fields

expr

SassListItem expr

Class com.vaadin.sass.internal.tree.RuleNode extends Node implements Serializable

serialVersionUID: 6653493127869037022L

Serialized Fields

variable

String variable

value

SassListItem value

comment

String comment

important

boolean important

Class com.vaadin.sass.internal.tree.SimpleNode extends Node implements Serializable

Serialized Fields

text

String text

Class com.vaadin.sass.internal.tree.VariableNode extends Node implements Serializable

serialVersionUID: 7003372557547748734L

Serialized Fields

name

String name

expr

SassListItem expr

guarded

boolean guarded

Package com.vaadin.sass.internal.tree.controldirective

Class com.vaadin.sass.internal.tree.controldirective.EachDefNode extends Node implements Serializable

serialVersionUID: 7943948981204906221L

Serialized Fields

var

String var

list

SassListItem list

Class com.vaadin.sass.internal.tree.controldirective.ElseNode extends Node implements Serializable

Class com.vaadin.sass.internal.tree.controldirective.ForNode extends Node implements Serializable

Serialized Fields

variableName

String variableName

from

SassListItem from

to

SassListItem to

exclusive

boolean exclusive

Class com.vaadin.sass.internal.tree.controldirective.IfElseDefNode extends Node implements Serializable

Class com.vaadin.sass.internal.tree.controldirective.IfNode extends Node implements Serializable

Serialized Fields

expression

SassListItem expression

Class com.vaadin.sass.internal.tree.controldirective.WhileNode extends Node implements Serializable

Serialized Fields

condition

SassListItem condition



Copyright © 2013–2014 Vaadin. All rights reserved.