Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/acs/damsel/client/remove/removeCollectionForm.java


1   package org.acs.damsel.client.remove;
2   
3   import org.apache.struts.action.*;
4   import javax.servlet.http.*;
5   
6   public class removeCollectionForm extends ActionForm {
7     private boolean checkOrderBy;
8     private String orderBySelect = "CollectionName";
9     public boolean getCheckOrderBy() {
10      return checkOrderBy;
11    }
12    public String getOrderBySelect() {
13      return orderBySelect;
14    }
15    public void setOrderBySelect(String orderBySelect) {
16      this.orderBySelect = orderBySelect;
17    }
18    public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
19      /**@todo: finish this method, this is just the skeleton.*/
20      return null;
21    }
22    public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
23    }
24    public boolean isCheckOrderBy() {
25      return checkOrderBy;
26    }
27    public void setCheckOrderBy(boolean checkOrderBy) {
28      this.checkOrderBy = checkOrderBy;
29    }
30  }