public class

CssStylesheet

extends CssNode
implements HasNodes
java.lang.Object
   ↳ com.google.gwt.resources.css.ast.CssNode
     ↳ com.google.gwt.resources.css.ast.CssStylesheet

Class Overview

An abstract representation of a CSS stylesheet.

Summary

Public Constructors
CssStylesheet()
CssStylesheet(CssStylesheet other)
A copy constructor that will clone the contents of an existing CssStylesheet.
Public Methods
void append(CssStylesheet other)
Append the given stylesheet.
List<CssNode> getNodes()
void traverse(CssVisitor visitor, Context context)
[Expand]
Inherited Methods
From class com.google.gwt.resources.css.ast.CssNode
From class java.lang.Object
From interface com.google.gwt.resources.css.ast.CssVisitable
From interface com.google.gwt.resources.css.ast.HasNodes

Public Constructors

public CssStylesheet ()

public CssStylesheet (CssStylesheet other)

A copy constructor that will clone the contents of an existing CssStylesheet.

Public Methods

public void append (CssStylesheet other)

Append the given stylesheet. The contents of the other stylesheet will be cloned.

public List<CssNode> getNodes ()

public void traverse (CssVisitor visitor, Context context)