/* * DString.java * Copyright (c) 2005 by University of Hamburg. All Rights Reserved. * Departament of Informatics. * Distributed Systems and Information Systems. * * Created by walczak on Jan 17, 2006. * Last revision $Revision: 4687 $ by: * $Author: walczak $ on $Date: 2006-12-21 11:38:59 +0100 (Do, 21 Dez 2006) $. */ package nuggets.delegate2; import java.sql.Timestamp; import nuggets.IAssembler; import nuggets.ICruncher; import nuggets.delegate.ADelegate; /** DString * @author walczak * @since Jan 17, 2006 */ public class DSQLTimestamp extends ADelegate { /** * @param clazz * @param asm * @return a new instance of this array * @throws Exception */ public Object getInstance(Class clazz,IAssembler asm) throws Exception { return new Timestamp(Long.parseLong((String) asm.getAttributeValue("v"))); } /** * @param o * @param mill * @see nuggets.delegate.ASimpleDelegate#persist(java.lang.Object, nuggets.ICruncher) */ public void persist(Object o, ICruncher mill, ClassLoader classloader) { mill.startConcept(o); mill.put("v", Long.toString(((Timestamp)o).getTime())); } // /** // * @param exp // * @return a call to the format method // * @see nuggets.delegate.ASimpleDelegate#getMarshallString(java.lang.String) // */ // public String getMarshallString(String exp) // { // return "Long.toString(("+exp+").getTime())"; // } /** * @param clazz * @param o * @return the name of the class * @see nuggets.delegate.ADelegate#marshall(java.lang.Class, java.lang.Object) */ public String marshall(Class clazz, Object o) { return Long.toString(((Timestamp)o).getTime()); } // /** // * @param className // * @param exp // * @return a call to the parse method // * @see nuggets.delegate.ASimpleDelegate#getUnmarshallString(String, java.lang.String) // */ // public String getUnmarshallString(String className, String exp) // { // return "new java.sql.Timestamp(Long.parseLong((String)"+exp+"))"; // } // // /** // * @param clazz // * @param value // * @return the boolean expression // * @see nuggets.delegate.ASimpleDelegate#unmarshall(java.lang.Class, java.lang.Object) // */ // public Object unmarshall(Class clazz, Object value) // { // return new Timestamp(Long.parseLong((String)value)); // } }