• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2008 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.android.ddmuilib.location;
18 
19 /**
20  * Base class for Location aware points.
21  */
22 class LocationPoint {
23     private double mLongitude;
24     private double mLatitude;
25     private boolean mHasElevation = false;
26     private double mElevation;
27 
setLocation(double longitude, double latitude)28     final void setLocation(double longitude, double latitude) {
29         mLongitude = longitude;
30         mLatitude = latitude;
31     }
32 
getLongitude()33     public final double getLongitude() {
34         return mLongitude;
35     }
36 
getLatitude()37     public final double getLatitude() {
38         return mLatitude;
39     }
40 
setElevation(double elevation)41     final void setElevation(double elevation) {
42         mElevation = elevation;
43         mHasElevation = true;
44     }
45 
hasElevation()46     public final boolean hasElevation() {
47         return mHasElevation;
48     }
49 
getElevation()50     public final double getElevation() {
51         return mElevation;
52     }
53 }
54