/projects/exoportal-v1.0.2/services/xml-processing/api/src/java/org/exoplatform/services/xml/transform/trax/TRAXTemplates.java
Java | 33 lines | 7 code | 7 blank | 19 comment | 0 complexity | 299fdc7bd54678f3e2b825d21bd1a3b7 MD5 | raw file
- /***************************************************************************
- * Copyright 2001-2005 The eXo Platform SARL All rights reserved. *
- * Please look at license.txt in info directory for more license detail. *
- **************************************************************************/
-
- package org.exoplatform.services.xml.transform.trax;
-
- import java.util.Properties;
- import javax.xml.transform.TransformerConfigurationException;
-
-
- /**
- * Created by The eXo Platform SARL .
- *
- * An object that implements this interface is the runtime
- * representation of processed transformation instructions
- * Analog of javax.xml.transform.Templates
- *
- * @author <a href="mailto:alex.kravchuk@gmail.com">Alexander Kravchuk</a>
- * @version $Id: TRAXTemplates.java 565 2005-01-25 12:48:13Z kravchuk $
- *
- * @see javax.xml.transform.Templates
- */
- public interface TRAXTemplates {
-
- /**
- * @see javax.xml.transform.Templates#getOutputProperties()
- */
- Properties getOutputProperties();
-
- TRAXTransformer newTransformer() throws TransformerConfigurationException;
-
- }