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

« back to all changes in this revision

Viewing changes to geotrans2/java_gui/geotrans/projections/MGRS.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
 
 
3
 
 
4
 
 
5
/*
 
6
 * MGRS.java
 
7
 *
 
8
 * Created on April 20, 2001, 2:54 PM
 
9
 */
 
10
 
 
11
package geotrans.projections;
 
12
 
 
13
/**
 
14
 *
 
15
 * @author  amyc
 
16
 * @version 
 
17
 */
 
18
public class MGRS extends Object {
 
19
 
 
20
    private java.lang.String coordinateString;
 
21
    
 
22
    /** Creates new MGRS */
 
23
    public MGRS() {
 
24
    }
 
25
 
 
26
    public MGRS(java.lang.String coordString)
 
27
    {
 
28
        coordinateString = coordString;
 
29
    }
 
30
    
 
31
    public java.lang.String getCoordinateString()
 
32
    {
 
33
        return coordinateString;
 
34
    }
 
35
}