当前位置: 首页>>代码示例>>Java>>正文


Java AssociationMap类代码示例

本文整理汇总了Java中com.sun.xml.internal.bind.v2.runtime.AssociationMap的典型用法代码示例。如果您正苦于以下问题:Java AssociationMap类的具体用法?Java AssociationMap怎么用?Java AssociationMap使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


AssociationMap类属于com.sun.xml.internal.bind.v2.runtime包,在下文中一共展示了AssociationMap类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: UnmarshallerImpl

import com.sun.xml.internal.bind.v2.runtime.AssociationMap; //导入依赖的package包/类
public UnmarshallerImpl( JAXBContextImpl context, AssociationMap assoc ) {
    this.context = context;
    this.coordinator = new UnmarshallingContext( this, assoc );

    try {
        setEventHandler(this);
    } catch (JAXBException e) {
        throw new AssertionError(e);    // impossible
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:11,代码来源:UnmarshallerImpl.java

示例2: DOMOutput

import com.sun.xml.internal.bind.v2.runtime.AssociationMap; //导入依赖的package包/类
public DOMOutput(Node node, AssociationMap assoc) {
    super(new SAX2DOMEx(node));
    this.assoc = assoc;
    assert assoc!=null;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:6,代码来源:DOMOutput.java

示例3: InPlaceDOMOutput

import com.sun.xml.internal.bind.v2.runtime.AssociationMap; //导入依赖的package包/类
public InPlaceDOMOutput(Node node, AssociationMap assoc) {
    super(new SAX2DOMEx(node));
    this.assoc = assoc;
    assert assoc!=null;
}
 
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:6,代码来源:InPlaceDOMOutput.java

示例4: UnmarshallingContext

import com.sun.xml.internal.bind.v2.runtime.AssociationMap; //导入依赖的package包/类
/**
 * Creates a new unmarshaller.
 *
 * @param assoc
 *      Must be both non-null when the unmarshaller does the
 *      in-place unmarshalling. Otherwise must be both null.
 */
public UnmarshallingContext( UnmarshallerImpl _parent, AssociationMap assoc) {
    this.parent = _parent;
    this.assoc = assoc;
    this.root = this.current = new State(null);
    allocateMoreStates();
}
 
开发者ID:RedlineResearch,项目名称:OLD-OpenJDK8,代码行数:14,代码来源:UnmarshallingContext.java

示例5: UnmarshallingContext

import com.sun.xml.internal.bind.v2.runtime.AssociationMap; //导入依赖的package包/类
/**
 * Creates a new unmarshaller.
 *
 * @param assoc
 *      Must be both non-null when the unmarshaller does the
 *      in-place unmarshalling. Otherwise must be both null.
 */
public UnmarshallingContext( UnmarshallerImpl _parent, AssociationMap assoc) {
    this.parent = _parent;
    this.assoc = assoc;
    this.root = this.current = new State(null);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:13,代码来源:UnmarshallingContext.java


注:本文中的com.sun.xml.internal.bind.v2.runtime.AssociationMap类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。