Skip to content

Instantly share code, notes, and snippets.

import java.text.SimpleDateFormat;
import java.util.Date;
/**
* Created by sugawaraMBP on 15/03/25.
*/
public class Log {
private static final String TAG = "Log";
private static final String EMPTY = "";
package com.example.smartphoneappdevelopguide.objectoriented.postsystem.town;
/**
* Created by sugawaraMBP on 2015/11/12.
*/
public class Address {
private static final String TAG = "Address";
public String prefecture;
public String city;
package com.example.smartphoneappdevelopguide.objectoriented.postsystem;
import com.example.smartphoneappdevelopguide.objectoriented.postsystem.service.Center;
import com.example.smartphoneappdevelopguide.objectoriented.postsystem.town.Address;
import com.example.smartphoneappdevelopguide.objectoriented.postsystem.town.House;
import com.example.smartphoneappdevelopguide.objectoriented.postsystem.town.HouseMap;
import com.example.smartphoneappdevelopguide.objectoriented.postsystem.user.Customer;
public class Main {