1 /***************************************************************************2 * Copyright 2001-2003 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.html;7 8 import org.exoplatform.services.xml.transform.AbstractTransformer;9 import java.util.Properties ;10 11 /**12 * Created by The eXo Platform SARL .13 *14 * @author <a HREF="mailto:geaz@users.sourceforge.net">Gennady Azarenkov</a>15 * @version $Id: HTMLTransformer.java 565 2005-01-25 12:48:13Z kravchuk $16 */17 18 public interface HTMLTransformer extends AbstractTransformer {19 /**20 * Sets properties for Tidy parser21 * See Tidy properties22 */23 public void setOutputProperties(Properties props);24 25 public Properties getOutputProperties();26 27 }28