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