Back to project page StudySpaces.
The source code is released under:
Apache License
If you think the Android project StudySpaces listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.pennstudyspaces.api; /*from w ww . j a v a 2 s .c o m*/ import android.util.Log; import java.util.ArrayList; public class Building { private static final String TAG = Building.class.getSimpleName(); private String name; private double latitude, longitude; private ArrayList<RoomKind> roomkinds; public String getName() { return name; } public double getLatitude() { return latitude; } public double getLongitude() { return longitude; } public ArrayList<RoomKind> getRoomKinds() { return roomkinds; } private void setName(String name) { this.name = name; } private void setLatitude(double latitude) { this.latitude = latitude; } private void setLongitude(double longitude) { this.longitude = longitude; } private void setRoomkinds(ArrayList<RoomKind> roomkinds) { this.roomkinds = roomkinds; for (RoomKind kind : roomkinds) { kind.setParentBuilding(this); Log.d(TAG, kind.getName() + " -> " + kind.getReserveType()); } } }