コード例 #1
0
ファイル: TrData.java プロジェクト: CafeGIS/gvSIG2_0
 public TrData(
     String authority, int code, String name, String crsSource, String crsTarget, String details) {
   super();
   this.authority = authority;
   this.code = code;
   this.name = name;
   this.crsSource = crsSource;
   this.crsTarget = crsTarget;
   this.details = details;
   this.date = DateTime.getCurrentDate();
 }
コード例 #2
0
ファイル: TrData.java プロジェクト: CafeGIS/gvSIG2_0
 public void updateLastAccess() {
   date = DateTime.getCurrentDate();
 }