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:47 EDT 2007 from /u01/builds/cougaar/B12_4/B12_4/070927151721/src/glm/src/org/cougaar/glm/ldm/asset/alpprops.def - DO NOT HAND EDIT */
028: /** Primary client interface for ManagedAssetPG.
029: * @see NewManagedAssetPG
030: * @see ManagedAssetPGImpl
031: **/package org.cougaar.glm.ldm.asset;
032:
033: import org.cougaar.planning.ldm.measure.*;
034: import org.cougaar.planning.ldm.asset.*;
035: import org.cougaar.planning.ldm.plan.*;
036: import java.util.*;
037:
038: import org.cougaar.glm.ldm.plan.*;
039: import org.cougaar.glm.ldm.oplan.*;
040: import org.cougaar.glm.ldm.policy.*;
041: import org.cougaar.core.mts.MessageAddress;
042: import org.cougaar.glm.execution.common.InventoryReport;
043:
044: public interface ManagedAssetPG extends PropertyGroup,
045: org.cougaar.planning.ldm.dq.HasDataQuality {
046: long getNumberOfPersonnel();
047:
048: // introspection and construction
049: /** the method of factoryClass that creates this type **/
050: String factoryMethod = "newManagedAssetPG";
051: /** the (mutable) class type returned by factoryMethod **/
052: String mutableClass = "org.cougaar.glm.ldm.asset.NewManagedAssetPG";
053: /** the factory class **/
054: Class factoryClass = org.cougaar.glm.ldm.asset.PropertyGroupFactory.class;
055: /** the (immutable) class type returned by domain factory **/
056: Class primaryClass = org.cougaar.glm.ldm.asset.ManagedAssetPG.class;
057: String assetSetter = "setManagedAssetPG";
058: String assetGetter = "getManagedAssetPG";
059: /** The Null instance for indicating that the PG definitely has no value **/
060: ManagedAssetPG nullPG = new Null_ManagedAssetPG();
061:
062: /** Null_PG implementation for ManagedAssetPG **/
063: final class Null_ManagedAssetPG implements ManagedAssetPG, Null_PG {
064: public long getNumberOfPersonnel() {
065: throw new UndefinedValueException();
066: }
067:
068: public boolean equals(Object object) {
069: throw new UndefinedValueException();
070: }
071:
072: public Object clone() throws CloneNotSupportedException {
073: throw new CloneNotSupportedException();
074: }
075:
076: public NewPropertyGroup unlock(Object key) {
077: return null;
078: }
079:
080: public PropertyGroup lock(Object key) {
081: return null;
082: }
083:
084: public PropertyGroup lock() {
085: return null;
086: }
087:
088: public PropertyGroup copy() {
089: return null;
090: }
091:
092: public Class getPrimaryClass() {
093: return primaryClass;
094: }
095:
096: public String getAssetGetMethod() {
097: return assetGetter;
098: }
099:
100: public String getAssetSetMethod() {
101: return assetSetter;
102: }
103:
104: public Class getIntrospectionClass() {
105: return ManagedAssetPGImpl.class;
106: }
107:
108: public boolean hasDataQuality() {
109: return false;
110: }
111:
112: public org.cougaar.planning.ldm.dq.DataQuality getDataQuality() {
113: return null;
114: }
115: }
116:
117: /** Future PG implementation for ManagedAssetPG **/
118: final class Future implements ManagedAssetPG, Future_PG {
119: public long getNumberOfPersonnel() {
120: waitForFinalize();
121: return _real.getNumberOfPersonnel();
122: }
123:
124: public boolean equals(Object object) {
125: waitForFinalize();
126: return _real.equals(object);
127: }
128:
129: public Object clone() throws CloneNotSupportedException {
130: throw new CloneNotSupportedException();
131: }
132:
133: public NewPropertyGroup unlock(Object key) {
134: return null;
135: }
136:
137: public PropertyGroup lock(Object key) {
138: return null;
139: }
140:
141: public PropertyGroup lock() {
142: return null;
143: }
144:
145: public PropertyGroup copy() {
146: return null;
147: }
148:
149: public Class getPrimaryClass() {
150: return primaryClass;
151: }
152:
153: public String getAssetGetMethod() {
154: return assetGetter;
155: }
156:
157: public String getAssetSetMethod() {
158: return assetSetter;
159: }
160:
161: public Class getIntrospectionClass() {
162: return ManagedAssetPGImpl.class;
163: }
164:
165: public synchronized boolean hasDataQuality() {
166: return (_real != null) && _real.hasDataQuality();
167: }
168:
169: public synchronized org.cougaar.planning.ldm.dq.DataQuality getDataQuality() {
170: return (_real == null) ? null : (_real.getDataQuality());
171: }
172:
173: // Finalization support
174: private ManagedAssetPG _real = null;
175:
176: public synchronized void finalize(PropertyGroup real) {
177: if (real instanceof ManagedAssetPG) {
178: _real = (ManagedAssetPG) real;
179: notifyAll();
180: } else {
181: throw new IllegalArgumentException(
182: "Finalization with wrong class: " + real);
183: }
184: }
185:
186: private synchronized void waitForFinalize() {
187: while (_real == null) {
188: try {
189: wait();
190: } catch (InterruptedException _ie) {
191: // We should really let waitForFinalize throw InterruptedException
192: Thread.interrupted();
193: }
194: }
195: }
196: }
197: }
|