PageRenderTime 2676ms CodeModel.GetById 24ms RepoModel.GetById 1ms app.codeStats 0ms

/projects/exoportal-v1.0.2/services/xml-processing/api/src/java/org/exoplatform/services/xml/transform/trax/TRAXTemplates.java

https://gitlab.com/essere.lab.public/qualitas.class-corpus
Java | 33 lines | 7 code | 7 blank | 19 comment | 0 complexity | 299fdc7bd54678f3e2b825d21bd1a3b7 MD5 | raw file
  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. package org.exoplatform.services.xml.transform.trax;
  6. import java.util.Properties;
  7. import javax.xml.transform.TransformerConfigurationException;
  8. /**
  9. * Created by The eXo Platform SARL .
  10. *
  11. * An object that implements this interface is the runtime
  12. * representation of processed transformation instructions
  13. * Analog of javax.xml.transform.Templates
  14. *
  15. * @author <a href="mailto:alex.kravchuk@gmail.com">Alexander Kravchuk</a>
  16. * @version $Id: TRAXTemplates.java 565 2005-01-25 12:48:13Z kravchuk $
  17. *
  18. * @see javax.xml.transform.Templates
  19. */
  20. public interface TRAXTemplates {
  21. /**
  22. * @see javax.xml.transform.Templates#getOutputProperties()
  23. */
  24. Properties getOutputProperties();
  25. TRAXTransformer newTransformer() throws TransformerConfigurationException;
  26. }