Package se.unlogic.standardutils.xml

Source Code of se.unlogic.standardutils.xml.CachedXSLTURI

/*******************************************************************************
* Copyright (c) 2010 Robert "Unlogic" Olofsson (unlogic@unlogic.se).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Lesser Public License v3
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/lgpl-3.0-standalone.html
******************************************************************************/
package se.unlogic.standardutils.xml;

import java.net.URI;

import javax.xml.transform.TransformerConfigurationException;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.URIResolver;
import javax.xml.transform.stream.StreamSource;

public class CachedXSLTURI extends CachedXSLTBase {

  private URI uri;
  private URIResolver uriResolver;

  public CachedXSLTURI(URI uri) throws TransformerConfigurationException {
    super();
    this.uri = uri;
    this.reloadStyleSheet();
  }

  public CachedXSLTURI(URI uri, URIResolver uriResolver) throws TransformerConfigurationException {

    this.uri = uri;
    this.uriResolver = uriResolver;
    this.reloadStyleSheet();
  }

  public void reloadStyleSheet() throws TransformerConfigurationException {

    TransformerFactory transFact = TransformerFactory.newInstance();

    if(uriResolver != null){
      transFact.setURIResolver(uriResolver);
    }

    this.templates = transFact.newTemplates(new StreamSource(uri.toString()));
  }

  @Override
  public String toString() {

    return "CachedXSLTURI: " + uri;
  }
}
TOP

Related Classes of se.unlogic.standardutils.xml.CachedXSLTURI

TOP
Copyright © 2018 www.massapi.com. 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.