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


Java PropertyManager类代码示例

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


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

示例1: getXMLStreamReaderImpl

import com.sun.org.apache.xerces.internal.impl.PropertyManager; //导入依赖的package包/类
XMLStreamReader getXMLStreamReaderImpl(XMLInputSource inputSource) throws javax.xml.stream.XMLStreamException{
    //1. if the temp reader is null -- create the instance and return
    if(fTempReader == null){
        fPropertyChanged = false;
        return fTempReader = new XMLStreamReaderImpl(inputSource,
                new PropertyManager(fPropertyManager));
    }
    //if factory is configured to reuse the instance & this instance can be reused
    //& the setProperty() hasn't been called
    if(fReuseInstance && fTempReader.canReuse() && !fPropertyChanged){
        if(DEBUG)System.out.println("Reusing the instance");
        //we can make setInputSource() call reset() and this way there wont be two function calls
        fTempReader.reset();
        fTempReader.setInputSource(inputSource);
        fPropertyChanged = false;
        return fTempReader;
    }else{
        fPropertyChanged = false;
        //just return the new instance.. note that we are not setting  fTempReader to the newly created instance
        return fTempReader = new XMLStreamReaderImpl(inputSource,
                new PropertyManager(fPropertyManager));
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:24,代码来源:XMLInputFactoryImpl.java

示例2: createXMLStreamWriter

import com.sun.org.apache.xerces.internal.impl.PropertyManager; //导入依赖的package包/类
javax.xml.stream.XMLStreamWriter createXMLStreamWriter(javax.xml.transform.stream.StreamResult sr, String encoding) throws javax.xml.stream.XMLStreamException {
    //if factory is configured to reuse the instance & this instance can be reused
    //& the setProperty() hasn't been called
    try{
        if(fReuseInstance && fStreamWriter != null && fStreamWriter.canReuse() && !fPropertyChanged){
            fStreamWriter.reset();
            fStreamWriter.setOutput(sr, encoding);
            if(DEBUG)System.out.println("reusing instance, object id : " + fStreamWriter);
            return fStreamWriter;
        }
        return fStreamWriter = new XMLStreamWriterImpl(sr, encoding, new PropertyManager(fPropertyManager));
    }catch(java.io.IOException io){
        throw new XMLStreamException(io);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:16,代码来源:XMLOutputFactoryImpl.java

示例3: XMLStreamWriterImpl

import com.sun.org.apache.xerces.internal.impl.PropertyManager; //导入依赖的package包/类
/**
 * Creates a new instance of XMLStreamWriterImpl. Uses platform's default
 * encoding.
 *
 * @param outputStream Underlying stream to write the bytes to
 * @param props        Properties used by this writer
 */
public XMLStreamWriterImpl(OutputStream outputStream, PropertyManager props)
    throws IOException {

    // cannot call this(outputStream, null, props); for constructor,
    // OutputStreamWriter charsetName cannot be null

    // use default encoding
    this(new OutputStreamWriter(outputStream), props);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:17,代码来源:XMLStreamWriterImpl.java

示例4: createXMLStreamReader

import com.sun.org.apache.xerces.internal.impl.PropertyManager; //导入依赖的package包/类
public XMLStreamReader createXMLStreamReader(Source source) throws XMLStreamException {
    return new XMLStreamReaderImpl(jaxpSourcetoXMLInputSource(source),
            new PropertyManager(fPropertyManager));
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:XMLInputFactoryImpl.java

示例5: StaxErrorReporter

import com.sun.org.apache.xerces.internal.impl.PropertyManager; //导入依赖的package包/类
/** Creates a new instance of StaxErrorReporter */
public StaxErrorReporter(PropertyManager propertyManager) {
    super();
    putMessageFormatter(XMLMessageFormatter.XML_DOMAIN, new XMLMessageFormatter());
    reset(propertyManager);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:7,代码来源:StaxErrorReporter.java

示例6: reset

import com.sun.org.apache.xerces.internal.impl.PropertyManager; //导入依赖的package包/类
/**
 *One must call reset before using any of the function.
 */
public void reset(PropertyManager propertyManager){
    fXMLReporter = (XMLReporter)propertyManager.getProperty(XMLInputFactory.REPORTER);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:7,代码来源:StaxErrorReporter.java

示例7: XMLEntityStorage

import com.sun.org.apache.xerces.internal.impl.PropertyManager; //导入依赖的package包/类
/** Creates a new instance of XMLEntityStorage */
public XMLEntityStorage(PropertyManager propertyManager) {
    fPropertyManager = propertyManager ;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:XMLEntityStorage.java


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