You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/KCommand.java

44 lines
1.3 KiB

//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();
}