/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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.apache.batik.anim.dom;
import org.apache.batik.css.engine.CSSEngine;
import org.apache.batik.css.engine.CSSStyleSheetNode;
import org.apache.batik.css.engine.StyleSheet;
import org.apache.batik.dom.AbstractDocument;
import org.apache.batik.dom.StyleSheetFactory;
import org.apache.batik.dom.StyleSheetProcessingInstruction;
import org.apache.batik.util.ParsedURL;
import org.w3c.dom.DOMException;
import org.w3c.dom.Node;
import java.util.HashMap;
This class provides an implementation of the 'xml-stylesheet' processing
instructions.
Author: Stephane Hillion Version: $Id: SVGStyleSheetProcessingInstruction.java 1831630 2018-05-15 12:56:55Z ssteiner $
/**
* This class provides an implementation of the 'xml-stylesheet' processing
* instructions.
*
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGStyleSheetProcessingInstruction.java 1831630 2018-05-15 12:56:55Z ssteiner $
*/
public class SVGStyleSheetProcessingInstruction
extends StyleSheetProcessingInstruction
implements CSSStyleSheetNode {
The style-sheet.
/**
* The style-sheet.
*/
protected StyleSheet styleSheet;
Creates a new ProcessingInstruction object.
/**
* Creates a new ProcessingInstruction object.
*/
protected SVGStyleSheetProcessingInstruction() {
}
Creates a new ProcessingInstruction object.
/**
* Creates a new ProcessingInstruction object.
*/
public SVGStyleSheetProcessingInstruction(String data,
AbstractDocument owner,
StyleSheetFactory f) {
super(data, owner, f);
}
Returns the URI of the referenced stylesheet.
/**
* Returns the URI of the referenced stylesheet.
*/
public String getStyleSheetURI() {
SVGOMDocument svgDoc = (SVGOMDocument) getOwnerDocument();
ParsedURL url = svgDoc.getParsedURL();
String href = getPseudoAttributes().get("href");
if (url != null) {
return new ParsedURL(url, href).toString();
}
return href;
}
Returns the associated style-sheet.
/**
* Returns the associated style-sheet.
*/
public StyleSheet getCSSStyleSheet() {
if (styleSheet == null) {
HashMap<String, String> attrs = getPseudoAttributes();
String type = attrs.get("type");
if ("text/css".equals(type)) {
String title = attrs.get("title");
String media = attrs.get("media");
String href = attrs.get("href");
String alternate = attrs.get("alternate");
SVGOMDocument doc = (SVGOMDocument)getOwnerDocument();
ParsedURL durl = doc.getParsedURL();
ParsedURL burl = new ParsedURL(durl, href);
CSSEngine e = doc.getCSSEngine();
styleSheet = e.parseStyleSheet(burl, media);
styleSheet.setAlternate("yes".equals(alternate));
styleSheet.setTitle(title);
}
}
return styleSheet;
}
DOM: Implements ProcessingInstruction.setData(String)
. /**
* <b>DOM</b>: Implements {@link
* org.w3c.dom.ProcessingInstruction#setData(String)}.
*/
public void setData(String data) throws DOMException {
super.setData(data);
styleSheet = null;
}
Returns a new uninitialized instance of this object's class.
/**
* Returns a new uninitialized instance of this object's class.
*/
protected Node newNode() {
return new SVGStyleSheetProcessingInstruction();
}
}