2011-12-16 09:38:26 +00:00

14 lines
283 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();
}