Examples of PlaceHolderList


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

     * references to balancing event positions.
     *
     * @return The newly created {@link PlaceHolderList}.
     */
    private PlaceHolderList pushBalancingEventPositionReferences() {
        PlaceHolderList referenceList = new PlaceHolderList();
        balancingEventPositionReferences.push(referenceList);
        return referenceList;
    }
View Full Code Here

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


        attributeBuilder.addAttributes(attributes);

        // Add a forward reference to the matching end element event.
        PlaceHolderList referenceList =
                pushBalancingEventPositionReferences();

        addPlaceHolderValue(referenceList, -1);
        if (LOGGER.isDebugEnabled()) {
            LOGGER.debug("   for forward reference");
View Full Code Here

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

        // get the location of the start prefix mappings.
        int prefixMappingLocation = ((Integer) prefixMappingLocations.pop()).intValue();
        int prefixMappingCount = intArray[prefixMappingLocation++];

        // Resolve the forward reference to the start of this event.
        PlaceHolderList referenceList =
                popBalancingEventPositionReferences();
        referenceList.setValue(intCount);

        // Add the event type.
        addEvent(SAXEventType.END_ELEMENT);

        // Add the strings.
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.