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

Quick Search    Search Deep

Source code: docs/future/doe/Thing.java


1   
2   package docs.future.doe;
3   
4   import java.util.List;
5   import org.crosswire.bible.passage.Passage;
6   
7   /**
8    * There is a question as to whether these should be concrete or not.
9    * @author Joe Walker
10   * @stereotype thing 
11   */
12  public class Thing 
13  {
14      public String getName()
15      {
16          return name;
17      }
18  
19      public Passage getPassage()
20      {
21          return ref;
22      }
23  
24      public void setPassage(Passage ref)
25      {
26          this.ref = ref;
27      }
28  
29      public List getAliases()
30      {
31          return aliases;
32      }
33  
34      private String name;
35  
36      /**
37       * @associates <{String}>
38       * @label aliases
39       * @supplierCardinality 0..*
40       * @clientCardinality 0..*
41       */
42      private List aliases;
43  
44      private Passage ref;
45  }