Revert mistaken changes.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2457 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
David Caruana
2006-02-21 16:56:17 +00:00
parent cab7aa3b4e
commit 09652cc5f0
2 changed files with 14 additions and 24 deletions

View File

@@ -17,6 +17,7 @@
package org.alfresco.service.cmr.view;
import java.io.InputStream;
import java.util.Collection;
import org.alfresco.service.cmr.repository.ContentData;
import org.alfresco.service.cmr.repository.NodeRef;
@@ -162,14 +163,6 @@ public interface Exporter
*/
public void endProperties(NodeRef nodeRef);
/**
* Export start of value collection
*
* @param nodeRef the node reference
* @param property the property name
*/
public void startValueCollection(NodeRef nodeRef, QName property);
/**
* Export single valued property
*
@@ -180,15 +173,16 @@ public interface Exporter
public void value(NodeRef nodeRef, QName property, Object value);
/**
* Export end of value collection
* Export multi valued property
*
* @param nodeRef the node reference
* @param property the property name
* @param value the value
*/
public void endValueCollection(NodeRef nodeRef, QName property);
public void value(NodeRef nodeRef, QName property, Collection values);
/**
* Export content stream property
* Export content stream
*
* @param nodeRef the node reference
* @param property the property name