Source code: com/lilacsoftware/orca/InfoForm.java
1 /*
2 * ____________________________________________________________________________
3 * Orca - Audio System
4 * Copyright (C) 2001 Tom Wadzinski <orca_twadzins@yahoo.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16 * ____________________________________________________________________________
17 */
18 package com.lilacsoftware.orca;
19 import java.util.ArrayList;
20
21 import java.util.List;
22 import java.util.Properties;
23 import java.util.Vector;
24 import org.apache.struts.action.ActionForm;
25
26 /**
27 * Description of the Class
28 *
29 *@author user
30 *@created November 8, 2001
31 */
32 public class InfoForm extends ActionForm
33 {
34 String selectionPage;
35
36
37 /**
38 * Sets the selectionPage attribute of the InfoForm object
39 *
40 *@param selectionPage The new selectionPage value
41 *@since
42 */
43 public void setSelectionPage( String selectionPage )
44 {
45 this.selectionPage = selectionPage;
46 }
47
48
49 /**
50 * Gets the selectionPage attribute of the InfoForm object
51 *
52 *@return The selectionPage value
53 *@since
54 */
55 public String getSelectionPage()
56 {
57 return selectionPage;
58 }
59
60 }
61