|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.openprivacy.reptile.xslt.StylesheetStack
Represents a stack(FIFO) of stylesheets which will be processed on the order they added by a StylesheetEngine
For example if you have the following code:
addStylesheet( "one.xsl" )
addStylesheet( "two.xsl" )
addStylesheet( "three.xsl" )
A StylesheetEngine will process the files as one.xsl, two.xsl and then three.xsl
Constructor Summary | |
StylesheetStack()
|
Method Summary | |
void |
addStylesheet(java.lang.String uri)
Add a new stylesheet. |
void |
addStylesheet(talon.util.net.URI uri)
|
boolean |
equals(java.lang.Object obj)
|
java.util.Iterator |
getIterator()
Get an iterator for this StylesheetStack so that we can go over it... |
protected java.util.List |
getStack()
Get the vector used to represent this stack. |
int |
hashCode()
|
int |
size()
|
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public StylesheetStack()
Method Detail |
public void addStylesheet(talon.util.net.URI uri)
addStylesheet(talon.util.net.URI)
public void addStylesheet(java.lang.String uri)
protected java.util.List getStack()
public java.util.Iterator getIterator()
public int size()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
Object.equals(java.lang.Object)
public int hashCode()
hashCode
in class java.lang.Object
Object.hashCode()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |