View Javadoc

1   // **********************************************************************
2   //
3   // Generated by the ORBacus IDL to Java Translator
4   //
5   // Copyright (c) 2000
6   // Object Oriented Concepts, Inc.
7   // Billerica, MA, USA
8   //
9   // All Rights Reserved
10  //
11  // **********************************************************************
12  
13  // Version: 4.0.3
14  
15  package edu.iris.Fissures.model;
16  
17  import java.io.Serializable;
18  import edu.iris.Fissures.BoxArea;
19  
20  //
21  // IDL:iris.edu/Fissures/BoxArea:1.0
22  //
23  /****/
24  
25  public class BoxAreaImpl extends BoxArea
26  {
27  
28      public BoxAreaImpl(float min_latitude,
29                 float max_latitude,
30                 float min_longitude,
31                 float max_longitude) {
32      this.min_latitude = min_latitude;
33      this.max_latitude = max_latitude;
34      this.min_longitude = min_longitude;
35      this.max_longitude = max_longitude;
36      }
37  
38      protected BoxAreaImpl() {
39  
40      }
41  
42      public static Serializable createEmpty() {
43          return new BoxAreaImpl();
44      }
45  
46      public String toString() {
47          return "BoxArea ("+min_latitude+","+min_longitude+") ("+max_latitude+","+max_longitude+")";
48      }
49  }