Package org.objectweb.celtix.tools.utils

Examples of org.objectweb.celtix.tools.utils.ElementLocator


        }
        return strbuffer.toString();
    }

    public void addError(Node node, String msg) {
        ElementLocator locator = (ElementLocator)node.getUserData(WSDLConstants.NODE_LOCATION);
        String errMsg = "line " + locator.getLine() + " column " + locator.getColumn();
        errMsg = errMsg + " of " + def.getDocumentBaseURI() + " " + msg;
        addErrorMessage(errMsg);
    }
View Full Code Here

TOP

Related Classes of org.objectweb.celtix.tools.utils.ElementLocator

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.