00001 00007 package org.best_of_robotics.model.datatypes; 00008 00009 import java.lang.String; 00010 00011 import org.eclipse.emf.ecore.EObject; 00012 00032 public interface Field extends EObject { 00047 String getName(); 00048 00057 void setName(String value); 00058 00073 DataType getType(); 00074 00083 void setType(DataType value); 00084 00099 String getDescription(); 00100 00109 void setDescription(String value); 00110 00125 String getMeasureUnit(); 00126 00135 void setMeasureUnit(String value); 00136 00137 } // Field