
org.sdmlib.serialization.util.JsonIdMapPOCreator 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.util;
import org.sdmlib.models.pattern.util.PatternObjectCreator;
import de.uniks.networkparser.IdMap;
public class JsonIdMapPOCreator extends PatternObjectCreator
{
@Override
public Object getSendableInstance(boolean reference)
{
if(reference) {
return new JsonIdMapPO(new IdMap[]{});
} else {
return new JsonIdMapPO();
}
}
public static IdMap createIdMap(String sessionID)
{
return CreatorCreator.createIdMap(sessionID);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy