1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 package eteg.sinon.core;
24
25 import java.util.Properties;
26
27 /***
28 * Class that encapsulates information about a start page of a catalog.
29 *
30 * <pre>
31 * $Header: /cvsroot/sinon/sinon/src/java/eteg/sinon/core/StartPage.java,v 1.2 2005/06/21 14:25:08 thiagohp Exp $
32 * </pre>
33 *
34 * @since 05/09/2004.
35 * @author Thiago H. de Paula Figueiredo (last modification by $Author: thiagohp $)
36 * @version $Revision: 1.2 $
37 * @see Catalog
38 */
39 public class StartPage {
40
41 /***
42 * Identifier of the start page.
43 */
44 private String refid;
45
46 /***
47 * Properties when the execution this start page starts.
48 */
49 private Properties properties;
50
51 /***
52 * Constructor without
53 */
54 public StartPage() {
55 }
56
57 /***
58 * Returns the value of the <code>refid</code> property.
59 * @return a <code>String</code>.
60 */
61 public String getRefid() {
62 return refid;
63 }
64
65 /***
66 * Sets the value of the <code>refid</code> property.
67 * @param refid the new <code>refid</code> value.
68 */
69 public void setRefid(String refid) {
70 this.refid = refid;
71 }
72
73 /***
74 * Returns the value of the <code>properties</code> property.
75 * @return a <code>Properties</code>.
76 */
77 public Properties getProperties() {
78 return properties;
79 }
80
81 /***
82 * Sets the value of the <code>properties</code> property.
83 * @param properties the new <code>properties</code> value.
84 */
85 public void setProperties(Properties properties) {
86 this.properties = properties;
87 }
88
89 }