Package com.volantis.xml.sax.recorder.impl.recording

Examples of com.volantis.xml.sax.recorder.impl.recording.PlaceHolder


        this.attributeBuilder = new AttributeContainerBuilderImpl(stringTable);
        this.balancingEventPositionReferences = new Stack();
        recordingInProgress = true;
        prefixMappingLocations = new Stack();

        lastCharacterEventLength = new PlaceHolder(this);
        prefixMappingCountReference = new PlaceHolder(this);
    }
View Full Code Here


     */
    private void addPlaceHolderValue(PlaceHolderList list, int initialValue) {
        // Create the place holder here as it automatically picks up the
        // current position which will be changed by the addInt() method that
        // follows.
        PlaceHolder placeHolder = new PlaceHolder(this);

        // Add a dummy value.
        addInt(initialValue);

        if (LOGGER.isDebugEnabled()) {
View Full Code Here

TOP

Related Classes of com.volantis.xml.sax.recorder.impl.recording.PlaceHolder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.