1 /***************************************************************************2 * Copyright 2001-2005 The eXo Platform SARL All rights reserved. *3 * Please look at license.txt in info directory for more license detail. *4 **************************************************************************/5 6 package org.exoplatform.services.xml.transform.trax;7 8 import java.util.Properties ;9 import javax.xml.transform.TransformerConfigurationException ;10 11 12 /**13 * Created by The eXo Platform SARL .14 *15 * An object that implements this interface is the runtime16 * representation of processed transformation instructions17 * Analog of javax.xml.transform.Templates18 *19 * @author <a HREF="mailto:alex.kravchuk@gmail.com">Alexander Kravchuk</a>20 * @version $Id: TRAXTemplates.java 565 2005-01-25 12:48:13Z kravchuk $21 *22 * @see javax.xml.transform.Templates23 */24 public interface TRAXTemplates {25 26 /**27 * @see javax.xml.transform.Templates#getOutputProperties()28 */29 Properties getOutputProperties();30 31 TRAXTransformer newTransformer() throws TransformerConfigurationException ;32 33 }34