#parse("templates/common.vm") #if($package) package $package; #end import org.eclipse.ice.data.IDataElement; /** * This interface satisfies the dependencies of the @DataElement Annotation and * was auto-generated by the ICE Framework. */ public interface $interface extends IDataElement<${interface}> { #foreach($field in $fields) #if(!${field.DefaultField}) #if(${field.Getter}) /** * Get ${field.Name}. * @return ${field.Name} */ public #fieldtype ${field.GetterName}(); #end## if Getter #if(${field.Setter}) /** * Set ${field.Name}. */ public void set${field.NameForMethod}(#fieldtype ${field.VarName}); #end## if Setter #end## if DefaultField #end## foreach field }