View Javadoc
1   /*
2    * $Header: /cvsroot/sinon/sinon/src/java/eteg/sinon/core/StartPage.java,v 1.2 2005/06/21 14:25:08 thiagohp Exp $
3    * $Revision: 1.2 $
4    * $Date: 2005/06/21 14:25:08 $
5    * $Author: thiagohp $
6    *
7    * =============================================================================
8    *
9    * Copyright 2004-2005 Eteg Internet Ltda. (http://www.eteg.com.br)
10   *
11   * Licensed under the Apache License, Version 2.0 (the "License");
12   * you may not use this file except in compliance with the License.
13   * You may obtain a copy of the License at
14   *
15   *     http://www.apache.org/licenses/LICENSE-2.0
16   *
17   * Unless required by applicable law or agreed to in writing, software
18   * distributed under the License is distributed on an "AS IS" BASIS,
19   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20   * See the License for the specific language governing permissions and
21   * limitations under the License.
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  }