當前位置: 首頁>>代碼示例>>Java>>正文


Java XmlSchemaType類代碼示例

本文整理匯總了Java中javax.xml.bind.annotation.XmlSchemaType的典型用法代碼示例。如果您正苦於以下問題:Java XmlSchemaType類的具體用法?Java XmlSchemaType怎麽用?Java XmlSchemaType使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


XmlSchemaType類屬於javax.xml.bind.annotation包,在下文中一共展示了XmlSchemaType類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: typeFromAnnotation

import javax.xml.bind.annotation.XmlSchemaType; //導入依賴的package包/類
@Test
public void typeFromAnnotation() {
   log.debug("start AnnotationUtilTest");
   Class<?> a = AnnotationUtil.getTypeOfAnnotatedFieldOrMethod(Sub4EyesController.class, XmlValue.class);
   Assert.assertTrue(a == long.class);

   Class<?> b = AnnotationUtil.getTypeOfAnnotatedFieldOrMethod(Sub4EyesController.class, XmlTransient.class);
   Assert.assertTrue(b == boolean.class);

   Class<?> b1 = AnnotationUtil.getTypeOfAnnotatedFieldOrMethod(CoreTestBase.class, AfterClass.class);
   Assert.assertTrue(b1 == void.class);

   try {
      AnnotationUtil.getTypeOfAnnotatedFieldOrMethod(Sub4EyesController.class, XmlSchemaType.class);
      Assert.fail();
   } catch (AnnotationNotFoundException e) {
      // okay, annotation is not present
   }
}
 
開發者ID:Wolfgang-Winter,項目名稱:cibet,代碼行數:20,代碼來源:AnnotationUtilTest.java

示例2: valueFromAnnotation

import javax.xml.bind.annotation.XmlSchemaType; //導入依賴的package包/類
@Test
public void valueFromAnnotation() {
   Sub4EyesController contr = new Sub4EyesController();
   Object o1 = AnnotationUtil.getValueOfAnnotatedFieldOrMethod(contr, XmlValue.class);
   Assert.assertTrue((Long) o1 == 43);

   Object o2 = AnnotationUtil.getValueOfAnnotatedFieldOrMethod(contr, XmlTransient.class);
   Assert.assertTrue((Boolean) o2 == true);

   ConfigurationTest test = new ConfigurationTest();
   Object o4 = AnnotationUtil.getValueOfAnnotatedFieldOrMethod(test, AfterClass.class);
   Assert.assertTrue(o4 == null);

   try {
      AnnotationUtil.getValueOfAnnotatedFieldOrMethod(contr, XmlSchemaType.class);
      Assert.fail();
   } catch (AnnotationNotFoundException e) {
      // okay, annotation is not present
   }
}
 
開發者ID:Wolfgang-Winter,項目名稱:cibet,代碼行數:21,代碼來源:AnnotationUtilTest.java

示例3: calcSchemaType

import javax.xml.bind.annotation.XmlSchemaType; //導入依賴的package包/類
static <T,C,F,M> QName calcSchemaType(
        AnnotationReader<T,C,F,M> reader,
        AnnotationSource primarySource, C enclosingClass, T individualType, Locatable src ) {

    XmlSchemaType xst = primarySource.readAnnotation(XmlSchemaType.class);
    if(xst!=null) {
        return new QName(xst.namespace(),xst.name());
    }

    // check the defaulted annotation
    XmlSchemaTypes xsts = reader.getPackageAnnotation(XmlSchemaTypes.class,enclosingClass,src);
    XmlSchemaType[] values = null;
    if(xsts!=null)
        values = xsts.value();
    else {
        xst = reader.getPackageAnnotation(XmlSchemaType.class,enclosingClass,src);
        if(xst!=null) {
            values = new XmlSchemaType[1];
            values[0] = xst;
        }
    }
    if(values!=null) {
        for( XmlSchemaType item : values ) {
            if(reader.getClassValue(item,"type").equals(individualType)) {
                return new QName(item.namespace(),item.name());
            }
        }
    }

    return null;
}
 
開發者ID:SunburstApps,項目名稱:OpenJSharp,代碼行數:32,代碼來源:Util.java

示例4: findTypeNameUncached

import javax.xml.bind.annotation.XmlSchemaType; //導入依賴的package包/類
private QName findTypeNameUncached(Field field, Class contentClass, String schemaNamespace) {
      if (field != null) {
	XmlSchemaType xmlSchemaType = field.getAnnotation(XmlSchemaType.class);
          if (xmlSchemaType != null) {
              return new QName(xmlSchemaType.namespace(), xmlSchemaType.name());
          }
      }
      QName typeName = XsdTypeMapper.getJavaToXsdMapping(contentClass);
      if (typeName != null) {
      	return typeName;
}
// TODO the following code is similar to determineTypeForClass
XmlType xmlType = (XmlType) contentClass.getAnnotation(XmlType.class);
if (xmlType != null) {
	String propTypeLocalPart = xmlType.name();
	String propTypeNamespace = xmlType.namespace();
	if (propTypeNamespace.equals(BeanMarshaller.DEFAULT_PLACEHOLDER)) {
		PrismSchema schema = prismContext.getSchemaRegistry().findSchemaByCompileTimeClass(contentClass);
		if (schema != null && schema.getNamespace() != null) {
			propTypeNamespace = schema.getNamespace();		// should be non-null for properly initialized schemas
		} else {
			// schemaNamespace is only a poor indicator of required namespace (consider e.g. having c:UserType in apit:ObjectListType)
			// so we use it only if we couldn't find anything else
			propTypeNamespace = schemaNamespace;
		}
	}
	return new QName(propTypeNamespace, propTypeLocalPart);
}
return null;
  }
 
開發者ID:Pardus-Engerek,項目名稱:engerek,代碼行數:31,代碼來源:PrismBeanInspector.java

示例5: findTypeNameUncached

import javax.xml.bind.annotation.XmlSchemaType; //導入依賴的package包/類
private QName findTypeNameUncached(Field field, Class contentClass, String schemaNamespace) {
  	if (RawType.class.equals(contentClass)) {
  		// RawType is a meta-type. We do not really want to use field types of RawType class.
  		return null;
  	}
      if (field != null) {
	XmlSchemaType xmlSchemaType = field.getAnnotation(XmlSchemaType.class);
          if (xmlSchemaType != null) {
              return new QName(xmlSchemaType.namespace(), xmlSchemaType.name());
          }
      }
      QName typeName = XsdTypeMapper.getJavaToXsdMapping(contentClass);
      if (typeName != null) {
      	return typeName;
}
// TODO the following code is similar to determineTypeForClass
XmlType xmlType = (XmlType) contentClass.getAnnotation(XmlType.class);
if (xmlType != null) {
	String propTypeLocalPart = xmlType.name();
	String propTypeNamespace = xmlType.namespace();
	if (propTypeNamespace.equals(BeanMarshaller.DEFAULT_PLACEHOLDER)) {
		PrismSchema schema = prismContext.getSchemaRegistry().findSchemaByCompileTimeClass(contentClass);
		if (schema != null && schema.getNamespace() != null) {
			propTypeNamespace = schema.getNamespace();		// should be non-null for properly initialized schemas
		} else {
			// schemaNamespace is only a poor indicator of required namespace (consider e.g. having c:UserType in apit:ObjectListType)
			// so we use it only if we couldn't find anything else
			propTypeNamespace = schemaNamespace;
		}
	}
	return new QName(propTypeNamespace, propTypeLocalPart);
}
return null;
  }
 
開發者ID:Evolveum,項目名稱:midpoint,代碼行數:35,代碼來源:PrismBeanInspector.java

示例6: XmlSchemaTypeQuick

import javax.xml.bind.annotation.XmlSchemaType; //導入依賴的package包/類
public XmlSchemaTypeQuick(Locatable upstream, XmlSchemaType core) {
    super(upstream);
    this.core = core;
}
 
開發者ID:SunburstApps,項目名稱:OpenJSharp,代碼行數:5,代碼來源:XmlSchemaTypeQuick.java

示例7: newInstance

import javax.xml.bind.annotation.XmlSchemaType; //導入依賴的package包/類
protected Quick newInstance(Locatable upstream, Annotation core) {
    return new XmlSchemaTypeQuick(upstream, ((XmlSchemaType) core));
}
 
開發者ID:SunburstApps,項目名稱:OpenJSharp,代碼行數:4,代碼來源:XmlSchemaTypeQuick.java

示例8: annotationType

import javax.xml.bind.annotation.XmlSchemaType; //導入依賴的package包/類
public Class<XmlSchemaType> annotationType() {
    return XmlSchemaType.class;
}
 
開發者ID:SunburstApps,項目名稱:OpenJSharp,代碼行數:4,代碼來源:XmlSchemaTypeQuick.java

示例9: getTime

import javax.xml.bind.annotation.XmlSchemaType; //導入依賴的package包/類
/**
 * Returns time of the last theo price computation.
 * Time is measured in milliseconds between the current time and midnight, January 1, 1970 UTC.
 * @return time of the last theo price computation.
 */
@XmlJavaTypeAdapter(type=long.class, value=XmlTimeAdapter.class)
@XmlSchemaType(name="dateTime")
public long getTime() {
	return time;
}
 
開發者ID:Devexperts,項目名稱:QD,代碼行數:11,代碼來源:TheoPrice.java

示例10: getTime

import javax.xml.bind.annotation.XmlSchemaType; //導入依賴的package包/類
/**
 * Returns time of the last trade.
 * Time is measured in milliseconds between the current time and midnight, January 1, 1970 UTC.
 * @return time of the last trade.
 */
@XmlJavaTypeAdapter(type=long.class, value=XmlTimeAdapter.class)
@XmlSchemaType(name="dateTime")
public long getTime() {
	return (timeSequence >> 32) * 1000 + ((timeSequence >> 22) & 0x3ff);
}
 
開發者ID:Devexperts,項目名稱:QD,代碼行數:11,代碼來源:TradeBase.java

示例11: getCreate

import javax.xml.bind.annotation.XmlSchemaType; //導入依賴的package包/類
@XmlSchemaType(name = "dateTime")
@XmlElement(name = ImportResourceApi.IMPORT_BATCH_CREATE)
@Override
public abstract Timestamp getCreate();
 
開發者ID:proarc,項目名稱:proarc,代碼行數:5,代碼來源:AnnotatedBatchView.java

示例12: getTimestamp

import javax.xml.bind.annotation.XmlSchemaType; //導入依賴的package包/類
@XmlSchemaType(name = "dateTime")
@XmlElement(name = ImportResourceApi.IMPORT_BATCH_TIMESTAMP)
@Override
public abstract Timestamp getTimestamp();
 
開發者ID:proarc,項目名稱:proarc,代碼行數:5,代碼來源:AnnotatedBatchView.java

示例13: setCredentialIssueDate

import javax.xml.bind.annotation.XmlSchemaType; //導入依賴的package包/類
@XmlElement
@XmlSchemaType(name = "date")
@XmlJavaTypeAdapter(type = DateTime.class, value = DateAdapter.class)
public void setCredentialIssueDate(DateTime credentialIssueDate) {
    this.credentialIssueDate = credentialIssueDate;
}
 
開發者ID:motech,項目名稱:modules,代碼行數:7,代碼來源:Credential.java

示例14: setCredentialRenewalDate

import javax.xml.bind.annotation.XmlSchemaType; //導入依賴的package包/類
@XmlElement
@XmlSchemaType(name = "date")
@XmlJavaTypeAdapter(type = DateTime.class, value = DateAdapter.class)
public void setCredentialRenewalDate(DateTime credentialRenewalDate) {
    this.credentialRenewalDate = credentialRenewalDate;
}
 
開發者ID:motech,項目名稱:modules,代碼行數:7,代碼來源:Credential.java

示例15: setDateOfBirth

import javax.xml.bind.annotation.XmlSchemaType; //導入依賴的package包/類
@XmlElement
@XmlSchemaType(name = "date")
@XmlJavaTypeAdapter(type = DateTime.class, value = DateAdapter.class)
public void setDateOfBirth(DateTime dateOfBirth) {
    this.dateOfBirth = dateOfBirth;
}
 
開發者ID:motech,項目名稱:modules,代碼行數:7,代碼來源:Person.java


注:本文中的javax.xml.bind.annotation.XmlSchemaType類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。