summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/StyleSheet.java
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2014-01-08 20:06:00 +0100
committerSlávek Banko <slavek.banko@axis.cz>2014-01-08 20:06:00 +0100
commit636f509299122d02087c6fd62e1e4a46dbd22026 (patch)
tree70e43efceeb5b00e7f19cdac8da44928bd2fb459 /kdejava/koala/org/kde/koala/StyleSheet.java
parent719b61750c08343f530068ed4127623aeac71cf0 (diff)
downloadtdebindings-636f509299122d02087c6fd62e1e4a46dbd22026.tar.gz
tdebindings-636f509299122d02087c6fd62e1e4a46dbd22026.zip
Rename many classes to avoid conflicts with KDE
Diffstat (limited to 'kdejava/koala/org/kde/koala/StyleSheet.java')
-rw-r--r--kdejava/koala/org/kde/koala/StyleSheet.java126
1 files changed, 0 insertions, 126 deletions
diff --git a/kdejava/koala/org/kde/koala/StyleSheet.java b/kdejava/koala/org/kde/koala/StyleSheet.java
deleted file mode 100644
index e83a5b0c..00000000
--- a/kdejava/koala/org/kde/koala/StyleSheet.java
+++ /dev/null
@@ -1,126 +0,0 @@
-//Auto-generated by kalyptus. DO NOT EDIT.
-package org.kde.koala;
-
-import org.kde.qt.Qt;
-import org.kde.qt.QtSupport;
-import java.util.ArrayList;
-
-/**
-
- The <code>StyleSheet</code> 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 <a
- href="http://www.w3.org/TR/REC-html40/struct/links.html#h-12.3">
- LINK </a> element, or an inline <a
- href="http://www.w3.org/TR/REC-html40/present/styles.html#h-14.2.3">
- STYLE </a> element. In XML, this interface represents an external
- style sheet, included via a <a
- href="http://www.w3.org/TR/xml-stylesheet"> style sheet processing
- instruction </a> .
- @short The <code>StyleSheet</code> interface is the abstract base interface for any type of style sheet.
-
-*/
-public class StyleSheet implements QtSupport {
- private long _qt;
- private boolean _allocatedInJavaWorld = true;
- protected StyleSheet(Class dummy){}
-
- public StyleSheet() {
- newStyleSheet();
- }
- private native void newStyleSheet();
- public StyleSheet(StyleSheet other) {
- newStyleSheet(other);
- }
- private native void newStyleSheet(StyleSheet other);
- // DOM::StyleSheet* StyleSheet(DOM::StyleSheetImpl* arg1); >>>> NOT CONVERTED
- /**
- This specifies the style sheet language for this style sheet.
- The style sheet language is specified as a content type (e.g.
- "text/css"). The content type is often specified in the
- <code>ownerNode</code> . A list of registered content types can be
- found at <a
- href="ftp://ftp.isi.edu/in-notes/iana/assignments/media-types/">
- ftp://ftp.isi.edu/in-notes/iana/assignments/media-types/ </a> .
- Also see the <a
- href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-type-A">
- type attribute definition </a> for the <code>LINK</code>
- element in HTML 4.0, and the type pseudo-attribute for the XML
- <a href="http://www.w3.org/TR/xml-stylesheet"> style sheet
- processing instruction </a> .
- @short This specifies the style sheet language for this style sheet.
- */
- public native String type();
- /**
- <code>false</code> if the style sheet is applied to the
- document. <code>true</code> if it is not. Modifying this
- attribute may cause a reresolution of style for the document.
- @short <code>false</code> if the style sheet is applied to the document.
- */
- public native boolean disabled();
- /**
- see disabled
- @short see disabled
- */
- public native void setDisabled(boolean arg1);
- /**
- The node that associates this style sheet with the document.
- For HTML, this may be the corresponding <code>LINK</code> or
- <code>STYLE</code> 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.
- @short The node that associates this style sheet with the document.
- */
- public native Node ownerNode();
- /**
- For style sheet languages that support the concept of style
- sheet inclusion, this attribute represents the including style
- sheet, if one exists. If the style sheet is a top-level style
- sheet, or the style sheet language does not support inclusion,
- the value of the attribute is null.
- @short For style sheet languages that support the concept of style sheet inclusion, this attribute represents the including style sheet, if one exists.
- */
- public native StyleSheet parentStyleSheet();
- /**
- If the style sheet is a linked style sheet, the value of its
- attribute is its location. For inline style sheets, the value
- of this attribute is null. See the <a
- href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-href">
- href attribute definition </a> for the <code>LINK</code>
- element in HTML 4.0, and the href pseudo-attribute for the XML
- <a href="http://www.w3.org/TR/xml-stylesheet"> style sheet
- processing instruction </a> .
- @short If the style sheet is a linked style sheet, the value of its attribute is its location.
- */
- public native String href();
- /**
- The advisory title. The title is often specified in the
- <code>ownerNode</code> . See the <a
- href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-title">
- title attribute definition </a> for the <code>LINK</code>
- element in HTML 4.0, and the title pseudo-attribute for the XML
- <a href="http://www.w3.org/TR/xml-stylesheet"> style sheet
- processing instruction </a> .
- @short The advisory title.
- */
- public native String title();
- /**
- The intended destination media for style information. The media
- is often specified in the <code>ownerNode</code> . See the <a
- href="http://www.w3.org/TR/REC-html40/present/styles.html#adef-media">
- media attribute definition </a> for the <code>LINK</code>
- element in HTML 4.0, and the media pseudo-attribute for the XML
- <a href="http://www.w3.org/TR/WD-xml-stylesheet"> style sheet
- processing instruction </a> .
- @short The intended destination media for style information.
- */
- public native ArrayList media();
- /**
- @short
- */
- public native boolean isCSSStyleSheet();
- // DOM::StyleSheetImpl* handle(); >>>> NOT CONVERTED
- public native boolean isNull();
-}