アットウィキロゴ
import java.sql.Date;
import java.sql.Time;
 
public class ObjectItem {
	String objectName;
	Stirng objectType;
	String status;
	Date createdDate;
	Time createdTime;
	Date lastDDLDate;
	Time lastDDLTiem;
 
	public void setObjectItem( ObjectItem object ) {
		this.objectName = object.objectName;
		this.objectType = object.objectType;
		this.status = object.status;
		this.createdDate = object.createdDate;
		this.createdTime = object.createdTime;
		this.lastDDLDate = object.lastDDLDate;
		this.lastDDLTime = object.lastDDLTime;
	}
}
----
作成日:2007/12/04 H.Naito
更新日:2007/12/04 H.Naito
----
最終更新:2007年12月04日 15:15