summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/TDEConfigGroup.java
blob: 344597e85fe305b77beef82c4ce9b07d247d3ba5 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.QtSupport;

/**

 A TDEConfigBase derived class for one specific group in a TDEConfig object.
 		@short    A TDEConfigBase derived class for one specific group in a TDEConfig object.

*/
public class TDEConfigGroup extends TDEConfigBase  {
	protected TDEConfigGroup(Class dummy){super((Class) null);}
	/**	
		 Construct a config group corresponding to <code>group</code> in <code>master.</code>
		 <code>group</code> is the group name encoded in UTF-8.
		    		@short    Construct a config group corresponding to <code>group</code> in <code>master.</code>
	*/
	public TDEConfigGroup(TDEConfigBase master, String group) {
		super((Class) null);
		newTDEConfigGroup(master,group);
	}
	private native void newTDEConfigGroup(TDEConfigBase master, String group);
	/**	
		 Delete all entries in the entire group
			@param bGlobal If <code>bGlobal</code> is true, the entries are not removed
		        from the application specific config file, but from the global
		        KDE config file.
		    		@short    Delete all entries in the entire group
	*/
	public native void deleteGroup(boolean bGlobal);
	public native void deleteGroup();
	/**	
		 Checks whether it is possible to change this group.
				@return whether changes may be made to this group in this configuration
 file.

		@short    Checks whether it is possible to change this group.
	*/
	public native boolean groupIsImmutable();
	public native void setDirty(boolean b);
	public native void putData(KEntryKey _key, KEntry _data, boolean _checkGroup);
	public native void putData(KEntryKey _key, KEntry _data);
	public native KEntry lookupData(KEntryKey _key);
	public native void sync();
	/** Deletes the wrapped C++ instance */
	protected native void finalize() throws InternalError;
	/** Delete the wrapped C++ instance ahead of finalize() */
	public native void dispose();
	/** Has the wrapped C++ instance been deleted? */
	public native boolean isDisposed();
}