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

@@ -74,8 +74,8 @@ public class OpenOfficeMetadataExtracter extends AbstractMappingMetadataExtracte
super.init(); super.init();
} }
/* (non-Javadoc) /**
* @see org.alfresco.repo.content.metadata.OpenOfficeMetadataWorker#isConnected() * {@inheritDoc}
*/ */
public boolean isConnected() public boolean isConnected()
{ {
@@ -95,8 +95,8 @@ public class OpenOfficeMetadataExtracter extends AbstractMappingMetadataExtracte
return super.isSupported(sourceMimetype); return super.isSupported(sourceMimetype);
} }
/* (non-Javadoc) /**
* @see org.alfresco.repo.content.metadata.OpenOfficeMetadataWorker#extractRaw(org.alfresco.service.cmr.repository.ContentReader) * {@inheritDoc}
*/ */
@Override @Override
public Map<String, Serializable> extractRaw(ContentReader reader) throws Throwable public Map<String, Serializable> extractRaw(ContentReader reader) throws Throwable

View File

@@ -42,5 +42,8 @@ public interface OpenOfficeMetadataWorker
*/ */
public boolean isConnected(); public boolean isConnected();
/**
* @see AbstractMappingMetadataExtracter#extractRaw(ContentReader)
*/
public Map<String, Serializable> extractRaw(ContentReader reader) throws Throwable; public Map<String, Serializable> extractRaw(ContentReader reader) throws Throwable;
} }

View File

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