summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KNamedCommand.java
blob: f3c3a1ffb5d8ece8efd9bc4ee94b5a5b78a68737 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//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);
}