All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ctc.wstx.evt.WEntityReference Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
package com.ctc.wstx.evt;

import javax.xml.stream.Location;
import javax.xml.stream.events.EntityReference;
import javax.xml.stream.events.EntityDeclaration;

import org.codehaus.stax2.ri.evt.EntityReferenceEventImpl;

/**
 * We need a slightly specialized version to support concept of
 * undeclared entities, which can be used in (non-default, non-standard)
 * mode where undeclared entities are allowed to be handled.
 */
public class WEntityReference
    extends EntityReferenceEventImpl
    implements EntityReference
{
    final String mName;

    public WEntityReference(Location loc, EntityDeclaration decl)
    {
        super(loc, decl);
        mName = null;
    }

    /**
     * This constructor gets called for undeclared/defined entities: we will
     * still know the name (from the reference), but not how it's defined
     * (since it is not defined).
     */
    public WEntityReference(Location loc, String name)
    {
        super(loc, (EntityDeclaration) null);
        mName = name;
    }

    public String getName()
    {
        if (mName != null) {
            return mName;
        }
        return super.getName();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy