Javadoc tweaks while investigating code changes

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@13866 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2009-04-07 00:15:48 +00:00
parent 440f9808e8
commit f31523d048
3 changed files with 13 additions and 4 deletions

View File

@@ -50,7 +50,13 @@ public interface ContentTransformerWorker
*/
public String getVersionString();
/**
* @see ContentTransformer#isTransformable(String, String, TransformationOptions)
*/
public boolean isTransformable(String sourceMimetype, String targetMimetype, TransformationOptions options);
/**
* @see ContentTransformer#transform(ContentReader, ContentWriter, TransformationOptions)
*/
public void transform(ContentReader reader, ContentWriter writer, TransformationOptions options) throws Exception;
}