Package org.pentaho.di.ui.spoon
Class TreeSelection
- java.lang.Object
-
- org.pentaho.di.ui.spoon.TreeSelection
-
public class TreeSelection extends Object
-
-
Constructor Summary
Constructors Constructor Description TreeSelection(String itemText, Object selection)
TreeSelection(String itemText, Object selection, Object parent)
TreeSelection(String itemText, Object selection, Object parent, Object grandParent)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
getGrandParent()
String
getItemText()
Object
getParent()
Object
getSelection()
void
setGrandParent(Object grandParent)
void
setItemText(String description)
void
setParent(Object parent)
void
setSelection(Object selection)
-
-
-
Method Detail
-
getGrandParent
public Object getGrandParent()
- Returns:
- the grandParent
-
setGrandParent
public void setGrandParent(Object grandParent)
- Parameters:
grandParent
- the grandParent to set
-
getParent
public Object getParent()
- Returns:
- the parent
-
setParent
public void setParent(Object parent)
- Parameters:
parent
- the parent to set
-
getSelection
public Object getSelection()
- Returns:
- the selection
-
setSelection
public void setSelection(Object selection)
- Parameters:
selection
- the selection to set
-
getItemText
public String getItemText()
- Returns:
- the description
-
setItemText
public void setItemText(String description)
- Parameters:
description
- the description to set
-
-