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


Java State类代码示例

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


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

示例1: startElement

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext.State; //导入依赖的package包/类
@Override
public void startElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
    // create or obtain the Map object
    try {
        target.set((BeanT)state.getPrev().getTarget());
        map.set(acc.get(target.get()));
        depthCounter++;
        if(map.get() == null) {
            map.set(ClassFactory.create(mapImplClass));
        }
        map.get().clear();
        state.setTarget(map.get());
    } catch (AccessorException e) {
        // recover from error by setting a dummy Map that receives and discards the values
        handleGenericException(e,true);
        state.setTarget(new HashMap());
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:19,代码来源:SingleMapNodeProperty.java

示例2: startElement

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext.State; //导入依赖的package包/类
@Override
public void startElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
    // create or obtain the Map object
    try {
        BeanT target = (BeanT) state.getPrev().getTarget();
        ValueT mapValue = acc.get(target);
        if(mapValue == null)
            mapValue = ClassFactory.create(mapImplClass);
        else
            mapValue.clear();

        Stack.push(this.target, target);
        Stack.push(map, mapValue);
        state.setTarget(mapValue);
    } catch (AccessorException e) {
        // recover from error by setting a dummy Map that receives and discards the values
        handleGenericException(e,true);
        state.setTarget(new HashMap());
    }
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:21,代码来源:SingleMapNodeProperty.java

示例3: startElement

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext.State; //导入依赖的package包/类
@Override
public void startElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
    // create or obtain the Map object
    try {
        target.set((BeanT)state.prev.target);
        map.set(acc.get(target.get()));
        depthCounter++;
        if(map.get() == null) {
            map.set(ClassFactory.create(mapImplClass));
        }
        map.get().clear();
        state.target = map.get();
    } catch (AccessorException e) {
        // recover from error by setting a dummy Map that receives and discards the values
        handleGenericException(e,true);
        state.target = new HashMap();
    }
}
 
开发者ID:RedlineResearch,项目名称:OLD-OpenJDK8,代码行数:19,代码来源:SingleMapNodeProperty.java

示例4: startElement

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext.State; //导入依赖的package包/类
@Override
public void startElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
    // create or obtain the Map object
    try {
        target.set((BeanT)state.prev.target);
        map.set(acc.get(target.get()));
        if(map.get() == null) {
            map.set(ClassFactory.create(mapImplClass));
        }
        map.get().clear();
        state.target = map.get();
    } catch (AccessorException e) {
        // recover from error by setting a dummy Map that receives and discards the values
        handleGenericException(e,true);
        state.target = new HashMap();
    }
}
 
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:18,代码来源:SingleMapNodeProperty.java

示例5: leaveElement

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext.State; //导入依赖的package包/类
@Override
public void leaveElement(State state, TagName ea) throws SAXException {
    super.leaveElement(state, ea);
    try {
        acc.set(target.get(), map.get());
        if (--depthCounter == 0) {
            target.remove();
            map.remove();
        }
    } catch (AccessorException ex) {
        handleGenericException(ex,true);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:14,代码来源:SingleMapNodeProperty.java

示例6: childElement

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext.State; //导入依赖的package包/类
@Override
public void childElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
    if(ea.matches(entryTag)) {
        state.setLoader(entryLoader);
    } else {
        super.childElement(state,ea);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:9,代码来源:SingleMapNodeProperty.java

示例7: leaveElement

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext.State; //导入依赖的package包/类
@Override
public void leaveElement(State state, TagName ea) throws SAXException {
    super.leaveElement(state, ea);
    try {
        acc.set(Stack.pop(target), Stack.pop(map));
    } catch (AccessorException ex) {
        handleGenericException(ex,true);
    }
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:10,代码来源:SingleMapNodeProperty.java

示例8: childElement

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext.State; //导入依赖的package包/类
@Override
public void childElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
    if(ea.matches(entryTag)) {
        state.loader = entryLoader;
    } else {
        super.childElement(state,ea);
    }
}
 
开发者ID:RedlineResearch,项目名称:OLD-OpenJDK8,代码行数:9,代码来源:SingleMapNodeProperty.java

示例9: leaveElement

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext.State; //导入依赖的package包/类
@Override
public void leaveElement(State state, TagName ea) throws SAXException {
    super.leaveElement(state, ea);
    try {
        acc.set(target.get(), map.get());
        target.remove();
    } catch (AccessorException ex) {
        handleGenericException(ex,true);
    }
}
 
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:11,代码来源:SingleMapNodeProperty.java

示例10: receive

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext.State; //导入依赖的package包/类
public void receive(UnmarshallingContext.State state, Object o) {
    ((Object[])state.getTarget())[index] = o;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:4,代码来源:SingleMapNodeProperty.java


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