Exemplo n.º 1
0
 /** Sorts the tree. */
 public void sortTree() {
   tree.sort();
 }
Exemplo n.º 2
0
 /**
  * Adds an event entity to the tree and selects it.
  *
  * @param entity The entity
  */
 public void addEventEntity(EventEntity entity) {
   tree.addEntity(entity);
   tree.select(entity);
   setEventEntity(entity);
 }
Exemplo n.º 3
0
 /**
  * Gets the container.
  *
  * @return The container
  */
 public EventTreeContainer getContainer() {
   return (EventTreeContainer) tree.getContainerDataSource();
 }
Exemplo n.º 4
0
 /**
  * Adds an event group to the tree and selects it.
  *
  * @param group The group
  */
 public void addEventGroup(EventGroup group) {
   tree.addEventGroup(group);
   tree.select(group);
   setEventGroup(group);
 }
Exemplo n.º 5
0
 /** Update the whole tree, which is very expensive. */
 public void updateTree() {
   tree.readData();
 }