org.sdmlib.serialization.EntityFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SDMLib Show documentation
Show all versions of SDMLib Show documentation
SDMLib is a light weight modeling library. SDMLib intentionally comes without any tool or editor.
package org.sdmlib.serialization;
import de.uniks.networkparser.interfaces.SendableEntityCreator;
public class EntityFactory implements SendableEntityCreator
{
/**
* Calls entity.removeYou().
*
* @param entity
* the entity to be deleted
*/
public void removeObject(Object entity)
{
}
public Object call(Object entity, String method, Object... args)
{
return null;
}
@Override
public String[] getProperties()
{
return new String[]
{};
}
@Override
public Object getSendableInstance(boolean prototyp)
{
return null;
}
public Object create()
{
return getSendableInstance(false);
}
@Override
public Object getValue(Object entity, String attribute)
{
return null;
}
@Override
public boolean setValue(Object entity, String attribute, Object value,
String type)
{
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy