~ubuntu-branches/ubuntu/raring/geotranz/raring

« back to all changes in this revision

Viewing changes to geotrans2/java_gui/geotrans/parameters/GeodeticParameters.java

  • Committer: Bazaar Package Importer
  • Author(s): Roberto Lumbreras
  • Date: 2008-10-17 14:43:09 UTC
  • Revision ID: james.westby@ubuntu.com-20081017144309-jb7uzfi1y1lvez8j
Tags: upstream-2.4.2
ImportĀ upstreamĀ versionĀ 2.4.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * GeodeticParameters.java
 
3
 *
 
4
 * Created on April 3, 2007, 2:35 PM
 
5
 *
 
6
 * To change this template, choose Tools | Template Manager
 
7
 * and open the template in the editor.
 
8
 */
 
9
 
 
10
package geotrans.parameters;
 
11
 
 
12
 
 
13
/**
 
14
 *
 
15
 * @author comstam
 
16
 */
 
17
public class GeodeticParameters extends CoordinateSystemParameters
 
18
{
 
19
  private int heightType;
 
20
  
 
21
  
 
22
  /** Creates a new instance of GeodeticParameters */
 
23
  public GeodeticParameters(int coordinateType, int _heightType) 
 
24
  {
 
25
    super(coordinateType);
 
26
    
 
27
    heightType = _heightType;
 
28
  }
 
29
  
 
30
  
 
31
  public int getHeightType()
 
32
  {
 
33
    return heightType;
 
34
  }
 
35
}