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 Capacity extends GLMAsset {
040:
041: public Capacity() {
042: myScheduledContentPG = null;
043: }
044:
045: public Capacity(Capacity prototype) {
046: super (prototype);
047: myScheduledContentPG = null;
048: }
049:
050: /** For infrastructure only - use org.cougaar.core.domain.Factory.copyInstance instead. **/
051: public Object clone() throws CloneNotSupportedException {
052: Capacity _thing = (Capacity) super .clone();
053: if (myScheduledContentPG != null)
054: _thing.setScheduledContentPG(myScheduledContentPG.lock());
055: return _thing;
056: }
057:
058: /** create an instance of the right class for copy operations **/
059: public Asset instanceForCopy() {
060: return new Capacity();
061: }
062:
063: /** create an instance of this prototype **/
064: public Asset createInstance() {
065: return new Capacity(this );
066: }
067:
068: protected void fillAllPropertyGroups(Vector v) {
069: super .fillAllPropertyGroups(v);
070: {
071: Object _tmp = getScheduledContentPG();
072: if (_tmp != null && !(_tmp instanceof Null_PG)) {
073: v.addElement(_tmp);
074: }
075: }
076: }
077:
078: private transient ScheduledContentPG myScheduledContentPG;
079:
080: public ScheduledContentPG getScheduledContentPG() {
081: ScheduledContentPG _tmp = (myScheduledContentPG != null) ? myScheduledContentPG
082: : (ScheduledContentPG) resolvePG(ScheduledContentPG.class);
083: return (_tmp == ScheduledContentPG.nullPG) ? null : _tmp;
084: }
085:
086: public void setScheduledContentPG(
087: PropertyGroup arg_ScheduledContentPG) {
088: if (!(arg_ScheduledContentPG instanceof ScheduledContentPG))
089: throw new IllegalArgumentException(
090: "setScheduledContentPG requires a ScheduledContentPG argument.");
091: myScheduledContentPG = (ScheduledContentPG) arg_ScheduledContentPG;
092: }
093:
094: // generic search methods
095: public PropertyGroup getLocalPG(Class c, long t) {
096: if (ScheduledContentPG.class.equals(c)) {
097: return (myScheduledContentPG == ScheduledContentPG.nullPG) ? null
098: : myScheduledContentPG;
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 (ScheduledContentPG.class.equals(c)) {
109: myScheduledContentPG = (ScheduledContentPG) 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 (ScheduledContentPG.class.equals(c)) {
121: removed = myScheduledContentPG;
122: myScheduledContentPG = 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 (ScheduledContentPG.class.equals(pgc)) {
132: PropertyGroup removed = myScheduledContentPG;
133: myScheduledContentPG = 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 (ScheduledContentPG.class.equals(c)) {
148: return (myScheduledContentPG = new ScheduledContentPGImpl());
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 (myScheduledContentPG instanceof Null_PG
158: || myScheduledContentPG instanceof Future_PG) {
159: out.writeObject(null);
160: } else {
161: out.writeObject(myScheduledContentPG);
162: }
163: }
164:
165: private void readObject(ObjectInputStream in)
166: throws ClassNotFoundException, IOException {
167: in.defaultReadObject();
168: myScheduledContentPG = (ScheduledContentPG) 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(
177: "ScheduledContentPG", Capacity.class,
178: "getScheduledContentPG", 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: }
|