001: /*
002: * <copyright>
003: *
004: * Copyright 1997-2004 BBNT Solutions, LLC
005: * under sponsorship of the Defense Advanced Research Projects
006: * Agency (DARPA).
007: *
008: * You can redistribute this software and/or modify it under the
009: * terms of the Cougaar Open Source License as published on the
010: * Cougaar Open Source Website (www.cougaar.org).
011: *
012: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
013: * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
014: * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
015: * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
016: * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
017: * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
018: * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
019: * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
020: * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
021: * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
022: * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
023: *
024: * </copyright>
025: */
026:
027: /* @generated Thu Sep 27 15:21:46 EDT 2007 from /u01/builds/cougaar/B12_4/B12_4/070927151721/src/glm/src/org/cougaar/glm/ldm/asset/alpassets.def - DO NOT HAND EDIT */
028: package org.cougaar.glm.ldm.asset;
029:
030: import org.cougaar.planning.ldm.asset.*;
031: import java.io.ObjectOutputStream;
032: import java.io.ObjectInputStream;
033: import java.io.IOException;
034: import java.util.Vector;
035: import java.beans.PropertyDescriptor;
036: import java.beans.IndexedPropertyDescriptor;
037: import java.beans.IntrospectionException;
038:
039: public class BulkPOL extends ClassIIIPOL {
040:
041: public BulkPOL() {
042: myFuelPG = null;
043: myLiquidPG = null;
044: }
045:
046: public BulkPOL(BulkPOL prototype) {
047: super (prototype);
048: myFuelPG = null;
049: myLiquidPG = null;
050: }
051:
052: /** For infrastructure only - use org.cougaar.core.domain.Factory.copyInstance instead. **/
053: public Object clone() throws CloneNotSupportedException {
054: BulkPOL _thing = (BulkPOL) super .clone();
055: if (myFuelPG != null)
056: _thing.setFuelPG(myFuelPG.lock());
057: if (myLiquidPG != null)
058: _thing.setLiquidPG(myLiquidPG.lock());
059: return _thing;
060: }
061:
062: /** create an instance of the right class for copy operations **/
063: public Asset instanceForCopy() {
064: return new BulkPOL();
065: }
066:
067: /** create an instance of this prototype **/
068: public Asset createInstance() {
069: return new BulkPOL(this );
070: }
071:
072: protected void fillAllPropertyGroups(Vector v) {
073: super .fillAllPropertyGroups(v);
074: {
075: Object _tmp = getFuelPG();
076: if (_tmp != null && !(_tmp instanceof Null_PG)) {
077: v.addElement(_tmp);
078: }
079: }
080: {
081: Object _tmp = getLiquidPG();
082: if (_tmp != null && !(_tmp instanceof Null_PG)) {
083: v.addElement(_tmp);
084: }
085: }
086: }
087:
088: private transient FuelPG myFuelPG;
089:
090: public FuelPG getFuelPG() {
091: FuelPG _tmp = (myFuelPG != null) ? myFuelPG
092: : (FuelPG) resolvePG(FuelPG.class);
093: return (_tmp == FuelPG.nullPG) ? null : _tmp;
094: }
095:
096: public void setFuelPG(PropertyGroup arg_FuelPG) {
097: if (!(arg_FuelPG instanceof FuelPG))
098: throw new IllegalArgumentException(
099: "setFuelPG requires a FuelPG argument.");
100: myFuelPG = (FuelPG) arg_FuelPG;
101: }
102:
103: private transient LiquidPG myLiquidPG;
104:
105: public LiquidPG getLiquidPG() {
106: LiquidPG _tmp = (myLiquidPG != null) ? myLiquidPG
107: : (LiquidPG) resolvePG(LiquidPG.class);
108: return (_tmp == LiquidPG.nullPG) ? null : _tmp;
109: }
110:
111: public void setLiquidPG(PropertyGroup arg_LiquidPG) {
112: if (!(arg_LiquidPG instanceof LiquidPG))
113: throw new IllegalArgumentException(
114: "setLiquidPG requires a LiquidPG argument.");
115: myLiquidPG = (LiquidPG) arg_LiquidPG;
116: }
117:
118: // generic search methods
119: public PropertyGroup getLocalPG(Class c, long t) {
120: if (FuelPG.class.equals(c)) {
121: return (myFuelPG == FuelPG.nullPG) ? null : myFuelPG;
122: }
123: if (LiquidPG.class.equals(c)) {
124: return (myLiquidPG == LiquidPG.nullPG) ? null : myLiquidPG;
125: }
126: return super .getLocalPG(c, t);
127: }
128:
129: public PropertyGroupSchedule getLocalPGSchedule(Class c) {
130: return super .getLocalPGSchedule(c);
131: }
132:
133: public void setLocalPG(Class c, PropertyGroup pg) {
134: if (FuelPG.class.equals(c)) {
135: myFuelPG = (FuelPG) pg;
136: } else if (LiquidPG.class.equals(c)) {
137: myLiquidPG = (LiquidPG) pg;
138: } else
139: super .setLocalPG(c, pg);
140: }
141:
142: public void setLocalPGSchedule(PropertyGroupSchedule pgSchedule) {
143: super .setLocalPGSchedule(pgSchedule);
144: }
145:
146: public PropertyGroup removeLocalPG(Class c) {
147: PropertyGroup removed = null;
148: if (FuelPG.class.equals(c)) {
149: removed = myFuelPG;
150: myFuelPG = null;
151: } else if (LiquidPG.class.equals(c)) {
152: removed = myLiquidPG;
153: myLiquidPG = null;
154: } else {
155: removed = super .removeLocalPG(c);
156: }
157: return removed;
158: }
159:
160: public PropertyGroup removeLocalPG(PropertyGroup pg) {
161: Class pgc = pg.getPrimaryClass();
162: if (FuelPG.class.equals(pgc)) {
163: PropertyGroup removed = myFuelPG;
164: myFuelPG = null;
165: return removed;
166: } else if (LiquidPG.class.equals(pgc)) {
167: PropertyGroup removed = myLiquidPG;
168: myLiquidPG = null;
169: return removed;
170: } else {
171: }
172: return super .removeLocalPG(pg);
173: }
174:
175: public PropertyGroupSchedule removeLocalPGSchedule(Class c) {
176: {
177: return super .removeLocalPGSchedule(c);
178: }
179: }
180:
181: public PropertyGroup generateDefaultPG(Class c) {
182: if (FuelPG.class.equals(c)) {
183: return (myFuelPG = new FuelPGImpl());
184: } else if (LiquidPG.class.equals(c)) {
185: return (myLiquidPG = new LiquidPGImpl());
186: } else
187: return super .generateDefaultPG(c);
188: }
189:
190: // dumb serialization methods
191:
192: private void writeObject(ObjectOutputStream out) throws IOException {
193: out.defaultWriteObject();
194: if (myFuelPG instanceof Null_PG
195: || myFuelPG instanceof Future_PG) {
196: out.writeObject(null);
197: } else {
198: out.writeObject(myFuelPG);
199: }
200: if (myLiquidPG instanceof Null_PG
201: || myLiquidPG instanceof Future_PG) {
202: out.writeObject(null);
203: } else {
204: out.writeObject(myLiquidPG);
205: }
206: }
207:
208: private void readObject(ObjectInputStream in)
209: throws ClassNotFoundException, IOException {
210: in.defaultReadObject();
211: myFuelPG = (FuelPG) in.readObject();
212: myLiquidPG = (LiquidPG) in.readObject();
213: }
214:
215: // beaninfo support
216: private static PropertyDescriptor properties[];
217: static {
218: try {
219: properties = new PropertyDescriptor[2];
220: properties[0] = new PropertyDescriptor("FuelPG",
221: BulkPOL.class, "getFuelPG", null);
222: properties[1] = new PropertyDescriptor("LiquidPG",
223: BulkPOL.class, "getLiquidPG", null);
224: } catch (IntrospectionException ie) {
225: }
226: }
227:
228: public PropertyDescriptor[] getPropertyDescriptors() {
229: PropertyDescriptor[] pds = super .getPropertyDescriptors();
230: PropertyDescriptor[] ps = new PropertyDescriptor[pds.length + 2];
231: System.arraycopy(pds, 0, ps, 0, pds.length);
232: System.arraycopy(properties, 0, ps, pds.length, 2);
233: return ps;
234: }
235: }
|