1 15 package org.apache.hivemind.schema; 16 17 import java.util.List ; 18 19 import org.apache.hivemind.Locatable; 20 import org.apache.hivemind.parse.AnnotationHolder; 21 22 28 public interface ElementModel extends AnnotationHolder, Locatable 29 { 30 33 public String getElementName(); 34 35 41 public List getElementModel(); 42 43 47 public List getAttributeModels(); 48 49 public AttributeModel getAttributeModel(String name); 50 51 58 public String getKeyAttribute(); 59 60 64 public List getRules(); 65 66 70 public String getContentTranslator(); 71 72 } | Popular Tags |