org.drools.rule
Class NamedConsequence

java.lang.Object
  extended by org.drools.rule.ConditionalElement
      extended by org.drools.rule.NamedConsequence
All Implemented Interfaces:
Externalizable, Serializable, Cloneable, NamedConsequenceInvoker, RuleConditionElement, RuleComponent

public class NamedConsequence
extends ConditionalElement
implements NamedConsequenceInvoker, Externalizable

See Also:
Serialized Form

Constructor Summary
NamedConsequence()
           
NamedConsequence(String name, boolean breaking)
           
 
Method Summary
 NamedConsequence clone()
          There is not reason to clone this object since it is stateless.
 boolean equals(Object obj)
           
 String getConsequenceName()
           
 Map<String,Declaration> getInnerDeclarations()
          It is not possible to declare any new variables, so always return an Empty Map
 List<RuleConditionElement> getNestedElements()
          It is not possible to nest elements inside an entry point, so always return an empty list.
 Map<String,Declaration> getOuterDeclarations()
          It is not possible to declare and export any variables, so always return an empty map
 int hashCode()
           
 boolean invokesConsequence(String consequenceName)
           
 boolean isBreaking()
           
 boolean isPatternScopeDelimiter()
          Returns true in case this RuleConditionElement delimits a pattern visibility scope.
 void readExternal(ObjectInput in)
           
 Declaration resolveDeclaration(String identifier)
          Not possible to resolve any declaration, so always return null.
 String toString()
           
 void writeExternal(ObjectOutput out)
           
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NamedConsequence

public NamedConsequence()

NamedConsequence

public NamedConsequence(String name,
                        boolean breaking)
Method Detail

readExternal

public void readExternal(ObjectInput in)
                  throws IOException,
                         ClassNotFoundException
Specified by:
readExternal in interface Externalizable
Throws:
IOException
ClassNotFoundException

writeExternal

public void writeExternal(ObjectOutput out)
                   throws IOException
Specified by:
writeExternal in interface Externalizable
Throws:
IOException

clone

public NamedConsequence clone()
There is not reason to clone this object since it is stateless. So a clone() call will return the instance itself.

Specified by:
clone in interface RuleConditionElement
Specified by:
clone in class ConditionalElement
Returns:
See Also:
ConditionalElement.clone()

getInnerDeclarations

public Map<String,Declaration> getInnerDeclarations()
It is not possible to declare any new variables, so always return an Empty Map

Specified by:
getInnerDeclarations in interface RuleConditionElement
Returns:
See Also:
RuleConditionElement.getInnerDeclarations()

getNestedElements

public List<RuleConditionElement> getNestedElements()
It is not possible to nest elements inside an entry point, so always return an empty list.

Specified by:
getNestedElements in interface RuleConditionElement
Returns:
See Also:
RuleConditionElement.getNestedElements()

getOuterDeclarations

public Map<String,Declaration> getOuterDeclarations()
It is not possible to declare and export any variables, so always return an empty map

Specified by:
getOuterDeclarations in interface RuleConditionElement
Returns:
See Also:
RuleConditionElement.getOuterDeclarations()

resolveDeclaration

public Declaration resolveDeclaration(String identifier)
Not possible to resolve any declaration, so always return null.

Specified by:
resolveDeclaration in interface RuleConditionElement
Returns:
See Also:
RuleConditionElement.resolveDeclaration(java.lang.String)

getConsequenceName

public String getConsequenceName()

invokesConsequence

public boolean invokesConsequence(String consequenceName)
Specified by:
invokesConsequence in interface NamedConsequenceInvoker

isBreaking

public boolean isBreaking()

hashCode

public int hashCode()
Overrides:
hashCode in class Object

equals

public boolean equals(Object obj)
Overrides:
equals in class Object

toString

public String toString()
Overrides:
toString in class Object

isPatternScopeDelimiter

public boolean isPatternScopeDelimiter()
Description copied from interface: RuleConditionElement
Returns true in case this RuleConditionElement delimits a pattern visibility scope. For instance, AND CE is not a scope delimiter, while NOT CE is a scope delimiter

Specified by:
isPatternScopeDelimiter in interface RuleConditionElement
Returns:


Copyright © 2001-2014 JBoss by Red Hat. All Rights Reserved.