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