1 17 package org.apache.ws.jaxme.xs.jaxb; 18 19 import org.apache.ws.jaxme.xs.xml.XsObject; 20 21 22 27 public interface JAXBProperty extends XsObject { 28 public interface BaseType extends XsObject { 29 31 public JAXBJavaType getJavaType(); 32 } 33 34 36 public String getName(); 37 38 43 public String getCollectionType(); 44 45 49 public Boolean isFixedAttributeAsConstantProperty(); 50 51 55 public Boolean isGenerateIsSetMethod(); 56 57 60 public Boolean isEnableFailFastCheck(); 61 62 64 public JAXBJavadoc getJavadoc(); 65 66 68 public BaseType getBaseType(); 69 } 70 | Popular Tags |