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

com.sun.tools.xjc.reader.dtd.bindinfo.DOMLocator Maven / Gradle / Ivy

There is a newer version: 4.0.5
Show newest version
/*
 * Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package com.sun.tools.xjc.reader.dtd.bindinfo;

import org.w3c.dom.Element;
import org.xml.sax.Locator;

class DOMLocator {
    private static final String locationNamespace =
        "http://www.sun.com/xmlns/jaxb/dom-location";
    private static final String systemId    = "systemid";
    private static final String column      = "column";
    private static final String line        = "line";
    
    /** Sets the location information to a specified element. */
    public static void setLocationInfo( Element e, Locator loc ) {
        e.setAttributeNS(locationNamespace,"loc:"+systemId,loc.getSystemId());
        e.setAttributeNS(locationNamespace,"loc:"+column,Integer.toString(loc.getLineNumber()));
        e.setAttributeNS(locationNamespace,"loc:"+line,Integer.toString(loc.getColumnNumber()));
    }
    
    /**
     * Gets the location information from an element.
     * 
     * 

* For this method to work, the setLocationInfo method has to be * called before. */ public static Locator getLocationInfo( final Element e ) { if(DOMUtil.getAttribute(e,locationNamespace,systemId)==null) return null; // no location information return new Locator(){ @Override public int getLineNumber() { return Integer.parseInt(DOMUtil.getAttribute(e,locationNamespace,line)); } @Override public int getColumnNumber() { return Integer.parseInt(DOMUtil.getAttribute(e,locationNamespace,column)); } @Override public String getSystemId() { return DOMUtil.getAttribute(e,locationNamespace,systemId); } // we are not interested in PUBLIC ID. @Override public String getPublicId() { return null; } }; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy