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


Java XmlMixed類代碼示例

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


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

示例1: ReferencePropertyInfoImpl

import javax.xml.bind.annotation.XmlMixed; //導入依賴的package包/類
public ReferencePropertyInfoImpl(
    ClassInfoImpl<T,C,F,M> classInfo,
    PropertySeed<T,C,F,M> seed) {

    super(classInfo, seed);

    isMixed = seed.readAnnotation(XmlMixed.class) != null;

    XmlAnyElement xae = seed.readAnnotation(XmlAnyElement.class);
    if(xae==null) {
        wildcard = null;
        domHandler = null;
    } else {
        wildcard = xae.lax()?WildcardMode.LAX:WildcardMode.SKIP;
        domHandler = nav().asDecl(reader().getClassValue(xae,"value"));
    }
}
 
開發者ID:campolake,項目名稱:openjdk9,代碼行數:18,代碼來源:ReferencePropertyInfoImpl.java

示例2: getContent

import javax.xml.bind.annotation.XmlMixed; //導入依賴的package包/類
@XmlMixed
@XmlElementRefs({
@XmlElementRef(name = TextSpanStored.XML_NAME, type = TextSpanStored.class)})
protected List<Object> getContent() {
    List<Object> contentToMarshal = new ArrayList<Object>();
    if (subspans != null) {
        contentToMarshal.addAll(subspans);
    } else if (value != null) {
        contentToMarshal.add(value);
    } else {
        return null;
    }
    return contentToMarshal;
}
 
開發者ID:weblicht,項目名稱:wlfxb,代碼行數:15,代碼來源:TextSpanStored.java

示例3: getGroup

import javax.xml.bind.annotation.XmlMixed; //導入依賴的package包/類
/**
 * Get group of elements.
 * @return The collection
 */
@XmlAnyElement(lax = true)
@XmlMixed
@NotNull(message = "collection is never NULL")
public Collection<?> getGroup() {
    return Collections.unmodifiableCollection(this.group);
}
 
開發者ID:yegor256,項目名稱:rexsl,代碼行數:11,代碼來源:JaxbGroup.java

示例4: getElements

import javax.xml.bind.annotation.XmlMixed; //導入依賴的package包/類
/**
 * Get all elements.
 * @return Full list of injected elements
 */
@XmlAnyElement(lax = true)
@XmlMixed
@NotNull
public List<Object> getElements() {
    return this.elements;
}
 
開發者ID:yegor256,項目名稱:rexsl,代碼行數:11,代碼來源:Link.java

示例5: getContents

import javax.xml.bind.annotation.XmlMixed; //導入依賴的package包/類
@XmlMixed
@XmlElementRef(name = "span", type = SpanElement.class)
public List<Serializable> getContents() {
    return contents;
}
 
開發者ID:lumenrobot,項目名稱:lumen,代碼行數:6,代碼來源:FragmentElement.java

示例6: getMixed

import javax.xml.bind.annotation.XmlMixed; //導入依賴的package包/類
@XmlMixed
public List<String> getMixed() {
  return mixed;
}
 
開發者ID:tinyMediaManager,項目名稱:tinyMediaManager,代碼行數:5,代碼來源:MovieToKodiNfoConnector.java

示例7: getItems

import javax.xml.bind.annotation.XmlMixed; //導入依賴的package包/類
@XmlAnyElement
@XmlMixed
public List<TEntity> getItems() {
	return this.items;
}
 
開發者ID:itlenergy,項目名稱:itlenergy,代碼行數:6,代碼來源:ItemList.java

示例8: getElements

import javax.xml.bind.annotation.XmlMixed; //導入依賴的package包/類
/**
 * Get all elements.
 * @return Full list of injected elements
 */
@XmlAnyElement(lax = true)
@XmlMixed
public final Collection<Object> getElements() {
    return Collections.unmodifiableCollection(this.elements);
}
 
開發者ID:yegor256,項目名稱:rexsl,代碼行數:10,代碼來源:BasePage.java


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