. First pass of a new style for the header area in the web-client UI

- Reclaims a large ammount of unused vertical space at the top of the application

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2474 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2006-02-23 10:13:05 +00:00
parent 2477598fcf
commit 5459a8bb36
3 changed files with 96 additions and 181 deletions

View File

@@ -117,7 +117,7 @@ public interface RuleService
public List<Rule> getRules(NodeRef nodeRef, boolean includeInhertied);
/**
* Get the rules associatied with an actionable node that are of a specific rule type.
* Get the rules associated with an actionable node that are of a specific rule type.
*
* @param nodeRef the node reference
* @param includeInhertiedRuleType indicates whether the inherited rules should be included in
@@ -128,6 +128,14 @@ public interface RuleService
*/
public List<Rule> getRules(NodeRef nodeRef, boolean includeInhertiedRuleType, String ruleTypeName);
/**
* Count the number of rules associated with an actionable node.
*
* @param nodeRef the node reference
* @return a list of the rules associated with the node
*/
public int countRules(NodeRef nodeRef);
/**
* Get the rule given its id.
*