summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KFileTreeViewItem.java
blob: f4a42bf2484ac2274d3cc72b021b87ba0481129d (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

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

/**

 An item for a KFileTreeView that knows about its own KFileItem.
 		@short    An item for a KFileTreeView that knows about its own KFileItem.

*/
public class KFileTreeViewItem extends KListViewItem  {
	protected KFileTreeViewItem(Class dummy){super((Class) null);}
	public KFileTreeViewItem(KFileTreeViewItem arg1, KFileItem arg2, KFileTreeBranch arg3) {
		super((Class) null);
		newKFileTreeViewItem(arg1,arg2,arg3);
	}
	private native void newKFileTreeViewItem(KFileTreeViewItem arg1, KFileItem arg2, KFileTreeBranch arg3);
	public KFileTreeViewItem(KFileTreeView arg1, KFileItem arg2, KFileTreeBranch arg3) {
		super((Class) null);
		newKFileTreeViewItem(arg1,arg2,arg3);
	}
	private native void newKFileTreeViewItem(KFileTreeView arg1, KFileItem arg2, KFileTreeBranch arg3);
	/**	
				@return the KFileTreeBranch the item is sorted in.
    
		@short
	*/
	public native KFileTreeBranch branch();
	/**	
				@return the KFileItem the viewitem is representing.
    
		@short
	*/
	public native KFileItem fileItem();
	/**	
				@return the path of the item.
    
		@short
	*/
	public native String path();
	/**	
				@return the items KURL
    
		@short
	*/
	public native KURL url();
	/**	
				@return if the item represents a directory
    
		@short
	*/
	public native boolean isDir();
	/**	
				@return if this directory was already seen by a KDirLister.
    
		@short
	*/
	public native boolean alreadyListed();
	/**	
		 set the flag if the directory was already listed.
		    		@short    set the flag if the directory was already listed.
	*/
	public native void setListed(boolean wasListed);
	/** 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();
}