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