. Added support for "displayLabelId" attribute in Advanced Search meta-data config (as requested on the forums)

. Handling of missing content (reader.exists()) in TemplateNode
. JavaDoc improvements to Template changes code from yestarday

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2008 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2005-12-08 14:57:40 +00:00
parent d051d1153c
commit c337d0d87e
3 changed files with 21 additions and 4 deletions

View File

@@ -387,17 +387,23 @@ public class ClientConfigElement extends ConfigElementAdapter
}
/**
* Simple wrapper class for custom advanced search property
* @author Kevin Roast
*/
public static class CustomProperty
{
CustomProperty(String type, String aspect, String property)
CustomProperty(String type, String aspect, String property, String labelId)
{
Type = type;
Aspect = aspect;
Property = property;
LabelId = labelId;
}
public String Type;
public String Aspect;
public String Property;
public String LabelId;
}
}