mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Fix for ALF-10826
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@32797 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -42,7 +42,7 @@ public class FileInfoImpl implements FileInfo
|
||||
private NodeRef linkNodeRef;
|
||||
private boolean isFolder;
|
||||
private boolean isLink;
|
||||
private boolean isHindden;
|
||||
private boolean isHidden;
|
||||
private Map<QName, Serializable> properties;
|
||||
private QName typeQName;
|
||||
|
||||
@@ -61,7 +61,7 @@ public class FileInfoImpl implements FileInfo
|
||||
|
||||
this.isFolder = isFolder;
|
||||
this.properties = properties;
|
||||
this.isHindden = isHidden;
|
||||
this.isHidden = isHidden;
|
||||
|
||||
// Check if this is a link node
|
||||
if ( properties.containsKey( ContentModel.PROP_LINK_DESTINATION))
|
||||
@@ -94,6 +94,11 @@ public class FileInfoImpl implements FileInfo
|
||||
return (this.getNodeRef().equals(that.getNodeRef()));
|
||||
}
|
||||
|
||||
void setHidden(boolean isHidden)
|
||||
{
|
||||
this.isHidden = isHidden;
|
||||
}
|
||||
|
||||
/**
|
||||
* @see #getNodeRef()
|
||||
* @see NodeRef#hashCode()
|
||||
@@ -139,7 +144,7 @@ public class FileInfoImpl implements FileInfo
|
||||
}
|
||||
|
||||
public boolean isHidden() {
|
||||
return isHindden;
|
||||
return isHidden;
|
||||
}
|
||||
|
||||
public NodeRef getLinkNodeRef()
|
||||
|
Reference in New Issue
Block a user