com.oxygenxml.validate.nvdl
Class AttributeActionSet

java.lang.Object
  extended by com.oxygenxml.validate.nvdl.AttributeActionSet

 class AttributeActionSet
extends Object

Action set for attributes. Consistes of two flags (attach, reject) and a list of schemas.


Field Summary
private  boolean attach
          Attach flag.
private  boolean cancelNestedActions
          Cancel nested actions flag.
private  boolean reject
          Reject flag.
private  Schema[] schemas
          An array of schemas.
 
Constructor Summary
AttributeActionSet()
           
 
Method Summary
(package private)  void addSchema(Schema schema)
          Add a new Schema.
(package private)  boolean getAttach()
          Getter for the attach flag.
(package private)  boolean getCancelNestedActions()
          Getter for the cancel nested actions flag.
(package private)  boolean getReject()
          Getter for the reject flag.
(package private)  Schema[] getSchemas()
          Get the schemas array.
(package private)  void setAttach(boolean attach)
          Setter for the attach flag.
(package private)  void setCancelNestedActions(boolean cancelNestedActions)
          Set the cancel nested actions flag.
(package private)  void setReject(boolean reject)
          Setter for the reject flag.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

attach

private boolean attach
Attach flag.


reject

private boolean reject
Reject flag.


cancelNestedActions

private boolean cancelNestedActions
Cancel nested actions flag.


schemas

private Schema[] schemas
An array of schemas.

Constructor Detail

AttributeActionSet

AttributeActionSet()
Method Detail

getAttach

boolean getAttach()
Getter for the attach flag.

Returns:
attach.

setAttach

void setAttach(boolean attach)
Setter for the attach flag.

Parameters:
attach - The new attach value.

getReject

boolean getReject()
Getter for the reject flag.

Returns:
reject.

setReject

void setReject(boolean reject)
Setter for the reject flag.

Parameters:
reject - The new reject flag value.

getCancelNestedActions

boolean getCancelNestedActions()
Getter for the cancel nested actions flag.


setCancelNestedActions

void setCancelNestedActions(boolean cancelNestedActions)
Set the cancel nested actions flag.

Parameters:
cancelNestedActions - The new value.

getSchemas

Schema[] getSchemas()
Get the schemas array.

Returns:
The array of Schema objects.

addSchema

void addSchema(Schema schema)
Add a new Schema.

Parameters:
schema - The schema to be added.