1 17 package org.apache.ws.jaxme.xs; 18 19 import org.apache.ws.jaxme.xs.xml.XsQName; 20 21 22 26 public interface XSAttribute extends XSOpenAttrs, XSAttributable { 27 29 public boolean isGlobal(); 30 31 34 public XsQName getName(); 35 36 38 public XSType getType(); 39 40 42 public boolean isOptional(); 43 44 46 public XSAnnotation[] getAnnotations(); 47 48 51 public String getDefault(); 52 53 56 public String getFixed(); 57 } 58 | Popular Tags |