com.sodius.mdw.core.eval.debug
Interface ProjectReference

All Superinterfaces:
ElementReference

public interface ProjectReference
extends ElementReference

Represents a project.

This interface is not intended to be implemented by clients.

See Also:
DebugHierarchy.getProject()

Method Summary
 Collection<RuleSetReference> getRuleSets()
          Returns the rule sets defined in this project and used during the evaluation.
 Collection<TextTemplateReference> getTextTemplates()
          Returns the text templates defined in this project and used during the evaluation.
 Collection<TypeReference> getTypes()
          Returns the types on which scripts are defined in this project and used during the evaluation.
 
Methods inherited from interface com.sodius.mdw.core.eval.debug.ElementReference
getName, getProject
 

Method Detail

getTextTemplates

Collection<TextTemplateReference> getTextTemplates()
Returns the text templates defined in this project and used during the evaluation.

Returns:
a unmodifiable collection of TextTemplateReference elements.
See Also:
TextTemplateReference

getRuleSets

Collection<RuleSetReference> getRuleSets()
Returns the rule sets defined in this project and used during the evaluation.

Returns:
a unmodifiable collection of RuleSetReference elements.
See Also:
RuleSetReference

getTypes

Collection<TypeReference> getTypes()
Returns the types on which scripts are defined in this project and used during the evaluation.

Returns:
a unmodifiable collection of TypeReference elements.
See Also:
TypeReference