CHModToolNativeTypeDelegate.java
Go to the documentation of this file.
00001 package org.best_of_robotics.transform.ros.to.cplusplus.tools;
00002 
00003 import java.util.List;
00004 
00005 import org.eclipse.epsilon.eol.exceptions.EolRuntimeException;
00006 import org.eclipse.epsilon.eol.types.AbstractToolNativeTypeDelegate;
00007 
00008 public class CHModToolNativeTypeDelegate extends AbstractToolNativeTypeDelegate {
00009         public Object createInstance(String clazz, List<Object> parameters) throws EolRuntimeException {
00010                 return new CHModTool();
00011         }
00012 
00013         public boolean knowsAbout(String clazz) {
00014                 if(clazz == CHModTool.class.toString())
00015                         return true;
00016                 else
00017                         return false;
00018         }
00019 
00020 }


bride_plugin_source
Author(s): Alexander Bubeck
autogenerated on Sun Oct 5 2014 22:38:34