Package com.biglybt.ui.swt.views
Interface FilesView.FilesViewTreeNode
-
- All Known Implementing Classes:
FilesView.FilesViewNodeInner
,FilesView.FilesViewNodeLeaf
- Enclosing class:
- FilesView
public static interface FilesView.FilesViewTreeNode
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getDepth()
long
getDownloaded()
java.util.List<FilesView.FilesViewTreeNode>
getKids()
long
getLength()
java.lang.String
getName()
FilesView.FilesViewNodeInner
getParent()
void
getPieceInfo(int[] data)
int
getSkippedState()
boolean
isLeaf()
void
recheck()
void
setSkipped(boolean b)
-
-
-
Method Detail
-
getName
java.lang.String getName()
-
getParent
FilesView.FilesViewNodeInner getParent()
-
getKids
java.util.List<FilesView.FilesViewTreeNode> getKids()
-
getDepth
int getDepth()
-
isLeaf
boolean isLeaf()
-
getSkippedState
int getSkippedState()
-
setSkipped
void setSkipped(boolean b)
-
recheck
void recheck()
-
getLength
long getLength()
-
getDownloaded
long getDownloaded()
-
getPieceInfo
void getPieceInfo(int[] data)
-
-