1 23 24 package org.objectweb.medor.api; 25 26 import org.objectweb.medor.clone.api.Cloneable; 27 28 36 public interface TupleStructure extends Cloneable { 37 38 42 Field[] getFields(); 43 44 50 Field getField(String fieldname) throws MedorException; 51 52 60 Field getField(int fieldrank) throws MedorException; 61 62 69 int getFieldRank(Field f) throws MedorException; 70 71 76 int getSize(); 77 78 86 boolean contains(Field f); 87 88 95 boolean contains(String fieldName); 96 } 97 | Popular Tags |