⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inventoryeditpage.java

📁 这是一个java编写的程序
💻 JAVA
字号:
package com.taursys.examples.simpleweb;import com.taursys.examples.simpleweb.delegate.BusinessDelegate;import com.taursys.examples.simpleweb.delegate.InvoiceItemVO;import com.taursys.examples.simpleweb.delegate.WarehouseVO;import com.taursys.html.HTMLComponentFactory;import com.taursys.html.HTMLInputText;import com.taursys.html.HTMLSelect;import com.taursys.model.VOListValueHolder;import com.taursys.model.ValueHolder;import com.taursys.servlet.ServletForm;import com.taursys.xml.Template;import com.taursys.xml.event.InputEvent;import com.taursys.xml.event.RenderEvent;import com.taursys.xml.event.RenderException;/** * Servlet Form * @author ${_author} * @version 2.0 */public class InventoryEditPage extends ServletForm {  private VOListValueHolder inventoryHolder = new VOListValueHolder();  private VOListValueHolder warehouseHolder = new VOListValueHolder();  private BusinessDelegate bd;  private HTMLSelect warehouseField = new HTMLSelect();//  private HTMLInputText removeBox = new HTMLInputText();  private HTMLInputText removeBoxOutput = new HTMLInputText();  private Template inventoryTemplate = new Template();  /**   * Constructs a new InventoryEditPage and initializes component properties.   */  public InventoryEditPage() {    try {      jbInit();    }    catch(Exception e) {      e.printStackTrace();    }  }  /**   * Set component properties here.  It is not recommended to put anything   * other than property settings in here.  Any Exception will cause the   * constructor to fail.   */  private void jbInit() throws Exception {    this.setDocumentURI("resource:///forms/InventoryEditPage.html");    inventoryHolder.setAlias("Inventory");    inventoryHolder.setValueObjectClass(InvoiceItemVO.class);    warehouseHolder.setAlias("Warehouse");    warehouseHolder.setValueObjectClass(WarehouseVO.class);    warehouseHolder.setParentValueHolder(inventoryHolder);    warehouseHolder.setParentPropertyName("warehouses");    warehouseField.setDisplayPropertyName("description");    warehouseField.setList(warehouseHolder);    warehouseField.setListPropertyNames(new String[] {"warehouseID"});    warehouseField.setPropertyName("warehouseID");    warehouseField.setId("Inventory__warehouseID");    warehouseField.setValueHolder(inventoryHolder);    warehouseField.setParameter("warehouseID");//    removeBox.addInputListener(new com.taursys.xml.event.InputListener() {//      public void inputReceived(InputEvent e) throws Exception {//        removeBox_inputReceived(e);//      }//    });//    removeBox.setParameter("remove");    removeBoxOutput.setId("Inventory__productID__2");    removeBoxOutput.addRenderListener(new com.taursys.xml.event.RenderListener() {      public void render(RenderEvent e) throws RenderException {        removeBoxOutput_render(e);      }    });    removeBoxOutput.setParameter("remove");    removeBoxOutput.setPropertyName("productID");    removeBoxOutput.setValueHolder(inventoryHolder);    inventoryTemplate.setId("Inventory__TEMPLATE_NODE");    inventoryTemplate.setCollectionValueHolder(inventoryHolder);//    inventoryTemplate.add(removeBox);    inventoryTemplate.add(removeBoxOutput);    inventoryTemplate.add(warehouseField);    this.add(inventoryTemplate);  }  /**   * One time initialization of the ServletForm.  This method is invoked ONCE.   * It is the first method invoked by the doGet method.  If the form is   * recycled, it will NOT be invoked again by doGet.   */  protected void initForm() throws java.lang.Exception {    super.initForm();    // Fetch reference to the Business delegate    bd = BusinessDelegate.getInstance();    // Use HTMLComponentFactory to create components    HTMLComponentFactory.getInstance().createComponents(this,      new ValueHolder[] {inventoryHolder});  }  /**   * This method is invoked by doGet to open the form.   * It is invoked after any parameters have been read, but before input   * values have been read.  Override this method to provide custom   * behavior such as opening data sources.  There is no need to invoke   * super.openForm().   */  protected void openForm() throws java.lang.Exception {    inventoryHolder.setList(bd.getAllInventoryItems());  }  void removeBox_inputReceived(InputEvent e) throws Exception {    System.out.println("removeBox value="+e.getValue());  }  void removeBoxOutput_render(RenderEvent e) throws RenderException {    System.out.println("rendering remove box");  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -