//Auto-generated by kalyptus. DO NOT EDIT. package org.kde.koala; import org.kde.qt.Qt; import org.kde.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); }