/*******************************************************************************
* Copyright (c) 2007-2009, G. Weirich and Elexis
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* G. Weirich - initial implementation
*
*******************************************************************************/
package ch.elexis.notes;
import java.lang.reflect.Method;
import ch.elexis.data.PersistentObject;
import ch.elexis.data.PersistentObjectFactory;
/**
* used internally to create Note Objects cfrom a String representation
*
* @see ch.elexis.data.PersisentObjectFactory
* @author gerry
*
*/
public class NoteFactory extends PersistentObjectFactory {
public NoteFactory(){}
@Override
public PersistentObject createFromString(String code){
try {
String[] ci = code.split("::"); //$NON-NLS-1$
Class<?> clazz = Class.forName(ci[0]);
Method load = clazz.getMethod("load", new Class[] { //$NON-NLS-1$
String.class
});
return (PersistentObject) (load.invoke(null, new Object[] {
ci[1]
}));
} catch (Exception ex) {
// ExHandler.handle(ex);
return null;
}
}
@Override
public PersistentObject doCreateTemplate(Class<? extends PersistentObject> typ){
try {
return (PersistentObject) typ.newInstance();
} catch (Exception e) {
// ExHandler.handle(e);
return null;
}
}
}