summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KCommand.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KCommand.java')
-rw-r--r--kdejava/koala/org/kde/koala/KCommand.java43
1 files changed, 0 insertions, 43 deletions
diff --git a/kdejava/koala/org/kde/koala/KCommand.java b/kdejava/koala/org/kde/koala/KCommand.java
deleted file mode 100644
index 2c33f28d..00000000
--- a/kdejava/koala/org/kde/koala/KCommand.java
+++ /dev/null
@@ -1,43 +0,0 @@
-//Auto-generated by kalyptus. DO NOT EDIT.
-package org.kde.koala;
-
-import org.kde.qt.Qt;
-import org.kde.qt.QtSupport;
-
-/**
-
- The abstract base class for all Commands. Commands are used to
- store information needed for Undo/Redo functionality...
- @short The abstract base class for all Commands.
-
-*/
-public class KCommand implements QtSupport {
- private long _qt;
- private boolean _allocatedInJavaWorld = true;
- protected KCommand(Class dummy){}
-
- /**
- The main method: executes this command.
- Implement here what this command is about, and remember to
- record any information that will be helpful for #unexecute.
- @short The main method: executes this command.
- */
- public native void execute();
- /**
- Unexecutes (undo) this command.
- Implement here the steps to take for undoing the command.
- If your application uses actions for everything (it should),
- and if you implement unexecute correctly, the application is in the same
- state after unexecute as it was before execute. This means, the next
- call to execute will do the same thing as it did the first time.
- @short Unexecutes (undo) this command.
- */
- public native void unexecute();
- /**
- @return the name of this command, translated, since it will appear
- in the menus.
-
- @short
- */
- public native String name();
-}