All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sdmlib.codegen.util.SymTabEntryPOCreator Maven / Gradle / Ivy

Go to download

SDMLib is a light weight modeling library. SDMLib intentionally comes without any tool or editor.

There is a newer version: 2.3.2341
Show newest version
package org.sdmlib.codegen.util;

import org.sdmlib.codegen.SymTabEntry;
import org.sdmlib.models.pattern.util.PatternObjectCreator;

import de.uniks.networkparser.IdMap;

public class SymTabEntryPOCreator extends PatternObjectCreator
{
   @Override
   public Object getSendableInstance(boolean reference)
   {
      if(reference) {
         return new SymTabEntryPO(new SymTabEntry[]{});
      } else {
         return new SymTabEntryPO();
      }
   }
   
   public static IdMap createIdMap(String sessionID)
   {
      return CreatorCreator.createIdMap(sessionID);
   }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy