Uses of Class
com.sodius.mdw.core.eval.project.VisibilityKind

Packages that use VisibilityKind
com.sodius.mdw.core.eval.debug Provides a tree of debug nodes, each node describing the evaluation of a project element (template, rule or script). 
com.sodius.mdw.core.eval.project Provides a description of the contents of a project : templates, rules and scripts. 
 

Uses of VisibilityKind in com.sodius.mdw.core.eval.debug
 

Methods in com.sodius.mdw.core.eval.debug that return VisibilityKind
 VisibilityKind ScriptReference.getVisibility()
          Returns the script visibility.
 VisibilityKind RuleReference.getVisibility()
          Returns the rule visibility.
 VisibilityKind ProjectUnitReference.getVisibility()
          Returns the unit visibility.
 

Uses of VisibilityKind in com.sodius.mdw.core.eval.project
 

Fields in com.sodius.mdw.core.eval.project declared as VisibilityKind
static VisibilityKind VisibilityKind.ENTRY_POINT
          entry : the rule is available to the end-user (only valid for rules).
static VisibilityKind VisibilityKind.PACKAGE
          package : the element is visible from the package in which the element is defined (valid for rules and scripts).
static VisibilityKind VisibilityKind.PRIVATE
          private : the element is not visible outside of the resource (valid for rules and scripts).
static VisibilityKind VisibilityKind.PROTECTED
          protected : the element is visible from the package in which the element is defined and on sub types of the script (valid for rules and scripts).
static VisibilityKind VisibilityKind.PUBLIC
          public : the script is visible from everywhere, the rule is visible from everywhere but should not be presented to the end-user (valid for rules and scripts).
 

Methods in com.sodius.mdw.core.eval.project that return VisibilityKind
 VisibilityKind Script.getVisibility()
          Returns the script visibility.
 VisibilityKind Rule.getVisibility()
          Returns the rule visibility.
 VisibilityKind ProjectElement.getVisibility()
          Returns the element visibility.
static VisibilityKind VisibilityKind.valueOf(String value)
          Determines the visibility represented as a String value.
 

Methods in com.sodius.mdw.core.eval.project with parameters of type VisibilityKind
 int VisibilityKind.compareTo(VisibilityKind visibility)
          Compares this visibility with the specified visibility for order.