mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-30 18:15:39 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@33096 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
15 lines
325 B
Java
15 lines
325 B
Java
package org.alfresco.repo.model.filefolder;
|
|
|
|
/**
|
|
* Represents hidden file information, including the filter (regular expression) and the visibility mask.
|
|
*
|
|
* @since 4.0
|
|
*
|
|
*/
|
|
public interface HiddenFileInfo
|
|
{
|
|
public int getVisibilityMask();
|
|
public String getFilter();
|
|
public boolean isHidden(String path);
|
|
}
|