/* * Copyright 2007 Sascha Weinreuter * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.intellij.plugins.xsltDebugger.rt.engine.local.saxon; import com.icl.saxon.om.NodeInfo; import org.intellij.plugins.xsltDebugger.rt.engine.Debugger; import org.intellij.plugins.xsltDebugger.rt.engine.local.AbstractFrame; class AbstractSaxonFrame<F extends Debugger.Frame, N extends NodeInfo> extends AbstractFrame<F> { protected final N myElement; protected AbstractSaxonFrame(F prev, N element) { super(prev); myElement = element; } public int getLineNumber() { return myElement.getLineNumber(); } public String getURI() { final String uri = myElement.getSystemId(); return uri != null ? uri.replaceAll(" ", "%20") : null; } }