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

Quick Search    Search Deep

Source code: org/biomage/Interface/HasFeatureInformationSources.java


1   /***************************************************************************  
2    *                                                                         *
3    * C O P Y R I G H T   N O T I C E                                         * 
4    *  Copyright (c) 2001 by:                                                 *
5    *    * The MicroArray Gene Expression Database group (MGED)               *
6    *    * Rosetta Inpharmatics                                               *
7    *                                                                         *
8    *    All Rights Reserved.                                                 *
9    *                                                                         *
10   * Permission is hereby granted, free of charge, to any person             *
11   * obtaining a copy of this software and associated documentation files    *
12   * (the "Software"), to deal in the Software without restriction,          *
13   * including without limitation the rights to use, copy, modify, merge,    *
14   * publish, distribute, sublicense, and/or sell copies of the Software,    *
15   * and to permit persons to whom the Software is furnished to do so,       *
16   * subject to the following conditions:                                    *
17   *                                                                         *
18   * The above copyright notice and this permission notice shall be          *
19   * included in all copies or substantial portions of the Software.         *
20   *                                                                         *
21   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,         *
22   * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF      * 
23   * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND                   *
24   * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS     *
25   * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN      *
26   * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN       *
27   * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE        *
28   * SOFTWARE.                                                               *
29   ***************************************************************************
30   *                                                                         *
31   * Created by the create_mage_java_classes java program based on the       * 
32   * information in the xmi file created from the MAGE-OM UML model,         *
33   * copyright European Bioinformatics Institute (EBI) for MGED and Rosetta  *
34   * Informatics.                                                            *
35   *                                                                         *
36   * The ideas and work are built on the previous work in perl of Jason      *
37   * Stewart, Open Informatics, and Robert M. Hubley, Institute for Systems  *
38   * Biology                                                                 *
39   *                                                                         *
40   * @author  Michael Miller, Rosetta Inpharmatics                           *
41   * @version Revision: 1.0                                                  *
42   * @date    Thu, Feb 21, 2002 10:47:46 AM                                  *
43   *                                                                         *
44   ***************************************************************************
45   */
46  
47  /**
48   *  org.biomage.Interface
49   *  
50   */
51  package org.biomage.Interface;
52  
53  /**
54   *  Import list for HasFeatureInformationSources
55   *  
56   */
57  import java.util.*;
58  import org.biomage.DesignElement.FeatureInformation;
59  
60  public
61  interface HasFeatureInformationSources
62  {
63      /**
64       *  Inner list class for holding multiple entries for attribute 
65       *  featureInformationSources.  Simply creates a named vector.
66       *  
67       */
68      public
69      class
70      FeatureInformationSources_list extends Vector
71      {
72      }
73  
74      /**
75       *  Set method for featureInformationSources
76       *  <p>
77       *  @param value to set
78       *  <p>
79       *  
80       */
81      public
82      void
83      setFeatureInformationSources(
84          FeatureInformationSources_list featureInformationSources
85      );
86  
87      /**
88       *  Get method for featureInformationSources
89       *  <p>
90       *  @return value of the attribute
91       *  <p>
92       *  
93       */
94      public
95      FeatureInformationSources_list
96      getFeatureInformationSources();
97  
98      /**
99       *  Method to add FeatureInformation to 
100      *  FeatureInformationSources_list
101      *  
102      */
103     public
104     void
105     addToFeatureInformationSources(
106         FeatureInformation featureInformation
107     );
108 
109     /**
110      *  Method to add FeatureInformation at position to 
111      *  FeatureInformationSources_list
112      *  
113      */
114     public
115     void
116     addToFeatureInformationSources(
117         int position,
118         FeatureInformation featureInformation
119     );
120 
121     /**
122      *  Method to get FeatureInformation from 
123      *  FeatureInformationSources_list
124      *  
125      */
126     public
127     FeatureInformation
128     getFromFeatureInformationSources(
129         int position
130     );
131 
132     /**
133      *  Method to remove by position from FeatureInformationSources_list
134      *  
135      */
136     public
137     void
138     removeElementAtFromFeatureInformationSources(
139         int position
140     );
141 
142     /**
143      *  Method to remove first FeatureInformation from 
144      *  FeatureInformationSources_list
145      *  
146      */
147     public
148     void
149     removeFromFeatureInformationSources(
150         FeatureInformation featureInformation
151     );
152 
153 }