|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.kde.koala.StyleSheet
public class StyleSheet
The StyleSheet
interface is the abstract base
interface for any type of style sheet. It represents a single style
sheet associated with a structured document. In HTML, the
StyleSheet interface represents either an external style sheet,
included via the HTML
LINK element, or an inline
STYLE element. In XML, this interface represents an external
style sheet, included via a style sheet processing
instruction .
Constructor Summary | |
---|---|
|
StyleSheet()
|
protected |
StyleSheet(java.lang.Class dummy)
|
|
StyleSheet(StyleSheet other)
|
Method Summary | |
---|---|
boolean |
disabled()
false if the style sheet is applied to the
document. |
java.lang.String |
href()
If the style sheet is a linked style sheet, the value of its attribute is its location. |
boolean |
isCSSStyleSheet()
|
boolean |
isNull()
|
java.util.ArrayList |
media()
The intended destination media for style information. |
Node |
ownerNode()
The node that associates this style sheet with the document. |
StyleSheet |
parentStyleSheet()
For style sheet languages that support the concept of style sheet inclusion, this attribute represents the including style sheet, if one exists. |
void |
setDisabled(boolean arg1)
see disabled |
java.lang.String |
title()
The advisory title. |
java.lang.String |
type()
This specifies the style sheet language for this style sheet. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
protected StyleSheet(java.lang.Class dummy)
public StyleSheet()
public StyleSheet(StyleSheet other)
Method Detail |
---|
public java.lang.String type()
ownerNode
. A list of registered content types can be
found at
ftp://ftp.isi.edu/in-notes/iana/assignments/media-types/ .
Also see the
type attribute definition for the LINK
element in HTML 4.0, and the type pseudo-attribute for the XML
style sheet
processing instruction .
public boolean disabled()
false
if the style sheet is applied to the
document. true
if it is not. Modifying this
attribute may cause a reresolution of style for the document.
public void setDisabled(boolean arg1)
public Node ownerNode()
LINK
or
STYLE
element. For XML, it may be the linking
processing instruction. For style sheets that are included by
other style sheets, this attribute has a value of null.
public StyleSheet parentStyleSheet()
public java.lang.String href()
LINK
element in HTML 4.0, and the href pseudo-attribute for the XML
style sheet
processing instruction .
public java.lang.String title()
ownerNode
. See the
title attribute definition for the LINK
element in HTML 4.0, and the title pseudo-attribute for the XML
style sheet
processing instruction .
public java.util.ArrayList media()
ownerNode
. See the
media attribute definition for the LINK
element in HTML 4.0, and the media pseudo-attribute for the XML
style sheet
processing instruction .
public boolean isCSSStyleSheet()
public boolean isNull()
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |