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