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