01: /*
02: * <copyright>
03: *
04: * Copyright 1997-2004 BBNT Solutions, LLC
05: * under sponsorship of the Defense Advanced Research Projects
06: * Agency (DARPA).
07: *
08: * You can redistribute this software and/or modify it under the
09: * terms of the Cougaar Open Source License as published on the
10: * Cougaar Open Source Website (www.cougaar.org).
11: *
12: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
13: * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
14: * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
15: * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
16: * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
17: * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
18: * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19: * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20: * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21: * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
22: * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23: *
24: * </copyright>
25: */
26:
27: /* hand generated! */
28:
29: package org.cougaar.glm.ldm.asset;
30:
31: import java.util.Vector;
32:
33: import org.cougaar.glm.ldm.plan.GeolocLocation;
34: import org.cougaar.planning.ldm.asset.Asset;
35: import org.cougaar.planning.ldm.measure.Latitude;
36: import org.cougaar.planning.ldm.measure.Longitude;
37:
38: public class TransportationNetwork extends TransportationGraph {
39: public TransportationNetwork() {
40: super ();
41: }
42:
43: public TransportationNetwork(TransportationNetwork prototype) {
44: super (prototype);
45: }
46:
47: public TransportationNetwork(Vector nodes, Longitude minlong,
48: Longitude maxlong, Latitude minlat, Latitude maxlat) {
49: super (nodes, minlong, maxlong, minlat, maxlat);
50: }
51:
52: /** create an instance of this prototype **/
53: public Asset createInstance() {
54: return new TransportationNetwork(this );
55: }
56:
57: /** For infrastructure only - use LdmFactory.copyInstance instead. **/
58: public Object clone() throws CloneNotSupportedException {
59: TransportationNetwork _thing = (TransportationNetwork) super
60: .clone();
61: return _thing;
62: }
63:
64: /** create an instance of the right class for copy operations **/
65: public Asset instanceForCopy() {
66: return new TransportationNetwork();
67: }
68:
69: protected void fillAllPropertyGroups(Vector v) {
70: super .fillAllPropertyGroups(v);
71: }
72:
73: // Get Accessors
74: public TransportationNetwork getMap(Longitude minlong,
75: Longitude maxlong, Latitude minlat, Latitude maxlat) {
76: TransportationNetwork retval = new TransportationNetwork(
77: new Vector(), minlong, maxlong, minlat, maxlat);
78: GeolocLocation target;
79: Vector nodes = getNodes();
80: for (int i = 0; i < getNumNodes(); i++) {
81: target = ((TransportationNode) nodes.elementAt(i))
82: .getGeolocLocation();
83: if (target.getLongitude().getValue(Longitude.DEGREES) <= retval
84: .getMaxLong().getValue(Longitude.DEGREES)
85: && target.getLongitude()
86: .getValue(Longitude.DEGREES) >= retval
87: .getMinLong().getValue(Longitude.DEGREES)
88: && target.getLatitude().getValue(Latitude.DEGREES) <= retval
89: .getMaxLat().getValue(Latitude.DEGREES)
90: && target.getLatitude().getValue(Latitude.DEGREES) >= retval
91: .getMinLat().getValue(Latitude.DEGREES)) {
92: retval.addNode((TransportationNode) nodes.elementAt(i));
93: }
94: }
95: return retval;
96: }
97: }
|