1 18 package org.apache.beehive.netui.pageflow; 19 20 import org.apache.struts.action.ActionForm; 21 22 import java.io.Serializable ; 23 24 27 public abstract class PreviousInfo 28 implements Serializable 29 { 30 private ActionForm _form; 31 private String _queryString; 32 33 protected PreviousInfo( ActionForm form, String queryString ) 34 { 35 _form = form; 36 _queryString = queryString; 37 } 38 39 44 public ActionForm getForm() 45 { 46 return _form; 47 } 48 49 54 public String getQueryString() 55 { 56 return _queryString; 57 } 58 59 void setForm( ActionForm form ) 60 { 61 _form = form; 62 } 63 64 void setQueryString( String queryString ) 65 { 66 _queryString = queryString; 67 } 68 } 69 | Popular Tags |