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/tdejava/koala/org/trinitydesktop/koala/KNamedCommand.java

30 lines
768 B

//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.koala;
import org.trinitydesktop.qt.Qt;
import org.trinitydesktop.qt.QtSupport;
/**
A command which stores its name.
It is more memory-efficient to use KCommand and to implement the name() method,
but in some cases it's more simple or more flexible to store the name at creation time.
@short A command which stores its name.
*/
public class KNamedCommand extends KCommand {
protected KNamedCommand(Class dummy){super((Class) null);}
/**
@return the name of this command
@short
*/
public native String name();
/**
Updates the name of this command.
Rarely necessary.
@short Updates the name of this command.
*/
public native void setName(String name);
}