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 Trailer extends CargoVehicle {
040:
041: public Trailer() {
042: myGroundVehiclePG = null;
043: myTowPG = null;
044: }
045:
046: public Trailer(Trailer prototype) {
047: super (prototype);
048: myGroundVehiclePG = null;
049: myTowPG = null;
050: }
051:
052: /** For infrastructure only - use org.cougaar.core.domain.Factory.copyInstance instead. **/
053: public Object clone() throws CloneNotSupportedException {
054: Trailer _thing = (Trailer) super .clone();
055: if (myGroundVehiclePG != null)
056: _thing.setGroundVehiclePG(myGroundVehiclePG.lock());
057: if (myTowPG != null)
058: _thing.setTowPG(myTowPG.lock());
059: return _thing;
060: }
061:
062: /** create an instance of the right class for copy operations **/
063: public Asset instanceForCopy() {
064: return new Trailer();
065: }
066:
067: /** create an instance of this prototype **/
068: public Asset createInstance() {
069: return new Trailer(this );
070: }
071:
072: protected void fillAllPropertyGroups(Vector v) {
073: super .fillAllPropertyGroups(v);
074: {
075: Object _tmp = getGroundVehiclePG();
076: if (_tmp != null && !(_tmp instanceof Null_PG)) {
077: v.addElement(_tmp);
078: }
079: }
080: {
081: Object _tmp = getTowPG();
082: if (_tmp != null && !(_tmp instanceof Null_PG)) {
083: v.addElement(_tmp);
084: }
085: }
086: }
087:
088: private transient GroundVehiclePG myGroundVehiclePG;
089:
090: public GroundVehiclePG getGroundVehiclePG() {
091: GroundVehiclePG _tmp = (myGroundVehiclePG != null) ? myGroundVehiclePG
092: : (GroundVehiclePG) resolvePG(GroundVehiclePG.class);
093: return (_tmp == GroundVehiclePG.nullPG) ? null : _tmp;
094: }
095:
096: public void setGroundVehiclePG(PropertyGroup arg_GroundVehiclePG) {
097: if (!(arg_GroundVehiclePG instanceof GroundVehiclePG))
098: throw new IllegalArgumentException(
099: "setGroundVehiclePG requires a GroundVehiclePG argument.");
100: myGroundVehiclePG = (GroundVehiclePG) arg_GroundVehiclePG;
101: }
102:
103: private transient TowPG myTowPG;
104:
105: public TowPG getTowPG() {
106: TowPG _tmp = (myTowPG != null) ? myTowPG
107: : (TowPG) resolvePG(TowPG.class);
108: return (_tmp == TowPG.nullPG) ? null : _tmp;
109: }
110:
111: public void setTowPG(PropertyGroup arg_TowPG) {
112: if (!(arg_TowPG instanceof TowPG))
113: throw new IllegalArgumentException(
114: "setTowPG requires a TowPG argument.");
115: myTowPG = (TowPG) arg_TowPG;
116: }
117:
118: // generic search methods
119: public PropertyGroup getLocalPG(Class c, long t) {
120: if (GroundVehiclePG.class.equals(c)) {
121: return (myGroundVehiclePG == GroundVehiclePG.nullPG) ? null
122: : myGroundVehiclePG;
123: }
124: if (TowPG.class.equals(c)) {
125: return (myTowPG == TowPG.nullPG) ? null : myTowPG;
126: }
127: return super .getLocalPG(c, t);
128: }
129:
130: public PropertyGroupSchedule getLocalPGSchedule(Class c) {
131: return super .getLocalPGSchedule(c);
132: }
133:
134: public void setLocalPG(Class c, PropertyGroup pg) {
135: if (GroundVehiclePG.class.equals(c)) {
136: myGroundVehiclePG = (GroundVehiclePG) pg;
137: } else if (TowPG.class.equals(c)) {
138: myTowPG = (TowPG) pg;
139: } else
140: super .setLocalPG(c, pg);
141: }
142:
143: public void setLocalPGSchedule(PropertyGroupSchedule pgSchedule) {
144: super .setLocalPGSchedule(pgSchedule);
145: }
146:
147: public PropertyGroup removeLocalPG(Class c) {
148: PropertyGroup removed = null;
149: if (GroundVehiclePG.class.equals(c)) {
150: removed = myGroundVehiclePG;
151: myGroundVehiclePG = null;
152: } else if (TowPG.class.equals(c)) {
153: removed = myTowPG;
154: myTowPG = null;
155: } else {
156: removed = super .removeLocalPG(c);
157: }
158: return removed;
159: }
160:
161: public PropertyGroup removeLocalPG(PropertyGroup pg) {
162: Class pgc = pg.getPrimaryClass();
163: if (GroundVehiclePG.class.equals(pgc)) {
164: PropertyGroup removed = myGroundVehiclePG;
165: myGroundVehiclePG = null;
166: return removed;
167: } else if (TowPG.class.equals(pgc)) {
168: PropertyGroup removed = myTowPG;
169: myTowPG = null;
170: return removed;
171: } else {
172: }
173: return super .removeLocalPG(pg);
174: }
175:
176: public PropertyGroupSchedule removeLocalPGSchedule(Class c) {
177: {
178: return super .removeLocalPGSchedule(c);
179: }
180: }
181:
182: public PropertyGroup generateDefaultPG(Class c) {
183: if (GroundVehiclePG.class.equals(c)) {
184: return (myGroundVehiclePG = new GroundVehiclePGImpl());
185: } else if (TowPG.class.equals(c)) {
186: return (myTowPG = new TowPGImpl());
187: } else
188: return super .generateDefaultPG(c);
189: }
190:
191: // dumb serialization methods
192:
193: private void writeObject(ObjectOutputStream out) throws IOException {
194: out.defaultWriteObject();
195: if (myGroundVehiclePG instanceof Null_PG
196: || myGroundVehiclePG instanceof Future_PG) {
197: out.writeObject(null);
198: } else {
199: out.writeObject(myGroundVehiclePG);
200: }
201: if (myTowPG instanceof Null_PG || myTowPG instanceof Future_PG) {
202: out.writeObject(null);
203: } else {
204: out.writeObject(myTowPG);
205: }
206: }
207:
208: private void readObject(ObjectInputStream in)
209: throws ClassNotFoundException, IOException {
210: in.defaultReadObject();
211: myGroundVehiclePG = (GroundVehiclePG) in.readObject();
212: myTowPG = (TowPG) 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("GroundVehiclePG",
221: Trailer.class, "getGroundVehiclePG", null);
222: properties[1] = new PropertyDescriptor("TowPG",
223: Trailer.class, "getTowPG", 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: }
|