source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/ViewBean.java@ 868

Last change on this file since 868 was 868, checked in by tobias, on May 3, 2010 at 7:12:46 PM

configurationView moved to new DataTree class.
implemented selectOneMenu on DataTree

File size: 442 bytes
Line 
1package de.dass_it.vanhelsing.gui;
2
3import javax.faces.event.ActionEvent;
4
5public interface ViewBean {
6 public DataTree getDataTree();
7 public void setDataTree(DataTree dataTree);
8
9 public void createNodeButtonListener(ActionEvent ae);
10 public void readNodeButtonListener(ActionEvent ae);
11 public void updateNodeButtonListener(ActionEvent ae);
12 public void deleteNodeButtonListener(ActionEvent ae);
13 public void selectNode(ActionEvent ae);
14}
Note: See TracBrowser for help on using the repository browser.