summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/Counter.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/Counter.java')
-rw-r--r--kdejava/koala/org/kde/koala/Counter.java52
1 files changed, 0 insertions, 52 deletions
diff --git a/kdejava/koala/org/kde/koala/Counter.java b/kdejava/koala/org/kde/koala/Counter.java
deleted file mode 100644
index b4a03fa6..00000000
--- a/kdejava/koala/org/kde/koala/Counter.java
+++ /dev/null
@@ -1,52 +0,0 @@
-//Auto-generated by kalyptus. DO NOT EDIT.
-package org.kde.koala;
-
-import org.kde.qt.Qt;
-import org.kde.qt.QtSupport;
-
-/**
-
- The <code>Counter</code> interface is used to represent any <a
- href="http://www.w3.org/TR/REC-CSS2/syndata.html#value-def-counter">
- counter or counters function </a> value. This interface reflects
- the values in the underlying style property. Hence, modifications
- made through this interface modify the style property.
- @short The <code>Counter</code> interface is used to represent any <a href="http://www.
-
-*/
-public class Counter implements QtSupport {
- private long _qt;
- private boolean _allocatedInJavaWorld = true;
- protected Counter(Class dummy){}
-
- public Counter() {
- newCounter();
- }
- private native void newCounter();
- public Counter(Counter other) {
- newCounter(other);
- }
- private native void newCounter(Counter other);
- /**
- This attribute is used for the identifier of the counter.
- @short This attribute is used for the identifier of the counter.
- */
- public native String identifier();
- /**
- This attribute is used for the style of the list.
- @short This attribute is used for the style of the list.
- */
- public native String listStyle();
- /**
- This attribute is used for the separator of nested counters.
- @short This attribute is used for the separator of nested counters.
- */
- public native String separator();
- /**
- not part of the DOM
- @short
- */
- // DOM::CounterImpl* handle(); >>>> NOT CONVERTED
- public native boolean isNull();
- // DOM::Counter* Counter(DOM::CounterImpl* arg1); >>>> NOT CONVERTED
-}