ALF-10826: tidy up, added to comments/javadocs

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@32804 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Steven Glover
2011-12-16 09:38:26 +00:00
parent 4e3b2beefc
commit 78ba4f6498
4 changed files with 28 additions and 41 deletions

View File

@@ -1,12 +1,13 @@
package org.alfresco.repo.model.filefolder;
import java.util.Set;
import org.alfresco.util.FileFilterMode.Client;
/**
* Represents hidden file information, including the filter (regular expression) and the visibility mask.
*
* @since 4.0
*
*/
public interface HiddenFileInfo
{
public Set<Client> getVisibility();
public int getVisibilityMask();
public String getFilter();
}