C# Class DataDictionary.Generated.RuleCondition

Inheritance: DataDictionary.ReqRelated
显示文件 Open project: ERTMSSolutions/ERTMSFormalSpecs Class Usage Examples

Public Methods

Method Description
NotifyControllers ( Lock aLock ) : void
RuleCondition ( ) : System
allActions ( ) : ArrayList

Part of the list interface for Actions

allPreConditions ( ) : ArrayList

Part of the list interface for PreConditions

allSubRules ( ) : ArrayList

Part of the list interface for SubRules

appendActions ( Action el ) : void

Part of the list interface for Actions

appendActions ( Lock aLock, Action el ) : void
appendActions ( System coll ) : void

Part of the list interface for Actions

appendActions ( System coll, Lock aLock ) : void
appendPreConditions ( Lock aLock, PreCondition el ) : void
appendPreConditions ( PreCondition el ) : void

Part of the list interface for PreConditions

appendPreConditions ( System coll ) : void

Part of the list interface for PreConditions

appendPreConditions ( System coll, Lock aLock ) : void
appendSubRules ( Lock aLock, Rule el ) : void
appendSubRules ( Rule el ) : void

Part of the list interface for SubRules

appendSubRules ( System coll ) : void

Part of the list interface for SubRules

appendSubRules ( System coll, Lock aLock ) : void
copyTo ( RuleCondition other ) : void
countActions ( ) : int

Part of the list interface for Actions

countPreConditions ( ) : int

Part of the list interface for PreConditions

countSubRules ( ) : int

Part of the list interface for SubRules

deleteActions ( int idx ) : void

Part of the list interface for Actions This deletion function removes an element from the collection in Actions

deleteActions ( int idx, Lock aLock ) : void
deletePreConditions ( int idx ) : void

Part of the list interface for PreConditions This deletion function removes an element from the collection in PreConditions

deletePreConditions ( int idx, Lock aLock ) : void
deleteSubRules ( int idx ) : void

Part of the list interface for SubRules This deletion function removes an element from the collection in SubRules

deleteSubRules ( int idx, Lock aLock ) : void
dispatch ( XmlBooster.XmlBBaseVisitor v ) : void
dispatch ( XmlBooster.XmlBBaseVisitor v, bool visitSubNodes ) : void
find ( Object search ) : bool
getActions ( int idx ) : Action

Part of the list interface for Actions This function returns an element from the collection in Actions based on an index.

getPreConditions ( int idx ) : PreCondition

Part of the list interface for PreConditions This function returns an element from the collection in PreConditions based on an index.

getSubRules ( int idx ) : Rule

Part of the list interface for SubRules This function returns an element from the collection in SubRules based on an index.

indexOfActions ( IXmlBBase el ) : int

Part of the list interface for Actions This function returns the index of an element in the collection.

indexOfPreConditions ( IXmlBBase el ) : int

Part of the list interface for PreConditions This function returns the index of an element in the collection.

indexOfSubRules ( IXmlBBase el ) : int

Part of the list interface for SubRules This function returns the index of an element in the collection.

insertActions ( int idx, Action el ) : void

Part of the list interface for Actions This insertion function inserts a new element in the collection in Actions

insertActions ( int idx, Action el, Lock aLock ) : void
insertPreConditions ( int idx, PreCondition el ) : void

Part of the list interface for PreConditions This insertion function inserts a new element in the collection in PreConditions

insertPreConditions ( int idx, PreCondition el, Lock aLock ) : void
insertSubRules ( int idx, Rule el ) : void

Part of the list interface for SubRules This insertion function inserts a new element in the collection in SubRules

insertSubRules ( int idx, Rule el, Lock aLock ) : void
parse ( XmlBooster.XmlBContext ctxt, string endingTag ) : void This method is used by XMLBooster-generated code internally. Please refrain from using it, as it might produce unexpected results, and might change or even disappear in the future.
parseBody ( XmlBooster.XmlBContext ctxt ) : void This method is used by XMLBooster-generated code internally. Please refrain from using it, as it might produce unexpected results, and might change or even disappear in the future.
removeActions ( IXmlBBase obj ) : void

Part of the list interface for Actions This deletion function removes an element from the collection in Actions If the object given in parameter is not found in the the collection, this function does nothing.

removeActions ( IXmlBBase obj, Lock aLock ) : void
removePreConditions ( IXmlBBase obj ) : void

Part of the list interface for PreConditions This deletion function removes an element from the collection in PreConditions If the object given in parameter is not found in the the collection, this function does nothing.

removePreConditions ( IXmlBBase obj, Lock aLock ) : void
removeSubRules ( IXmlBBase obj ) : void

Part of the list interface for SubRules This deletion function removes an element from the collection in SubRules If the object given in parameter is not found in the the collection, this function does nothing.

removeSubRules ( IXmlBBase obj, Lock aLock ) : void
setAllActions ( Lock aLock, System coll ) : void
setAllActions ( System coll ) : void

Part of the list interface for Actions

setAllPreConditions ( Lock aLock, System coll ) : void
setAllPreConditions ( System coll ) : void

Part of the list interface for PreConditions

setAllSubRules ( Lock aLock, System coll ) : void
setAllSubRules ( System coll ) : void

Part of the list interface for SubRules

subElements ( ArrayList l ) : void This method is used by XMLBooster-generated code internally. Please refrain from using it, as it might produce unexpected results, and might change or even disappear in the future.
unParse ( TextWriter pw, bool typeId, string headingTag, string endingTag ) : void This method is used by XMLBooster-generated code internally. Please refrain from using it, as it might produce unexpected results, and might change or even disappear in the future.
unParseBody ( TextWriter pw ) : void This method is used by XMLBooster-generated code internally. Please refrain from using it, as it might produce unexpected results, and might change or even disappear in the future.

Private Methods

Method Description
getActions ( ) : ArrayList

Part of the list interface for Actions

getPreConditions ( ) : ArrayList

Part of the list interface for PreConditions

getSubRules ( ) : ArrayList

Part of the list interface for SubRules

Method Details

NotifyControllers() public method

public NotifyControllers ( Lock aLock ) : void
aLock Lock
return void

RuleCondition() public method

public RuleCondition ( ) : System
return System

allActions() public method

Part of the list interface for Actions
public allActions ( ) : ArrayList
return System.Collections.ArrayList

allPreConditions() public method

Part of the list interface for PreConditions
public allPreConditions ( ) : ArrayList
return System.Collections.ArrayList

allSubRules() public method

Part of the list interface for SubRules
public allSubRules ( ) : ArrayList
return System.Collections.ArrayList

appendActions() public method

Part of the list interface for Actions
public appendActions ( Action el ) : void
el Action a Action to add to the collection in /// Actions
return void

appendActions() public method

public appendActions ( Lock aLock, Action el ) : void
aLock Lock
el Action
return void

appendActions() public method

Part of the list interface for Actions
public appendActions ( System coll ) : void
coll System a collection ofActions to add to the collection in /// Actions
return void

appendActions() public method

public appendActions ( System coll, Lock aLock ) : void
coll System
aLock Lock
return void

appendPreConditions() public method

public appendPreConditions ( Lock aLock, PreCondition el ) : void
aLock Lock
el PreCondition
return void

appendPreConditions() public method

Part of the list interface for PreConditions
public appendPreConditions ( PreCondition el ) : void
el PreCondition a PreCondition to add to the collection in /// PreConditions
return void

appendPreConditions() public method

Part of the list interface for PreConditions
public appendPreConditions ( System coll ) : void
coll System a collection ofPreConditions to add to the collection in /// PreConditions
return void

appendPreConditions() public method

public appendPreConditions ( System coll, Lock aLock ) : void
coll System
aLock Lock
return void

appendSubRules() public method

public appendSubRules ( Lock aLock, Rule el ) : void
aLock Lock
el Rule
return void

appendSubRules() public method

Part of the list interface for SubRules
public appendSubRules ( Rule el ) : void
el Rule a Rule to add to the collection in /// SubRules
return void

appendSubRules() public method

Part of the list interface for SubRules
public appendSubRules ( System coll ) : void
coll System a collection ofRules to add to the collection in /// SubRules
return void

appendSubRules() public method

public appendSubRules ( System coll, Lock aLock ) : void
coll System
aLock Lock
return void

copyTo() public method

public copyTo ( RuleCondition other ) : void
other RuleCondition
return void

countActions() public method

Part of the list interface for Actions
public countActions ( ) : int
return int

countPreConditions() public method

Part of the list interface for PreConditions
public countPreConditions ( ) : int
return int

countSubRules() public method

Part of the list interface for SubRules
public countSubRules ( ) : int
return int

deleteActions() public method

Part of the list interface for Actions This deletion function removes an element from the collection in Actions
public deleteActions ( int idx ) : void
idx int the index of the element to remove
return void

deleteActions() public method

public deleteActions ( int idx, Lock aLock ) : void
idx int
aLock Lock
return void

deletePreConditions() public method

Part of the list interface for PreConditions This deletion function removes an element from the collection in PreConditions
public deletePreConditions ( int idx ) : void
idx int the index of the element to remove
return void

deletePreConditions() public method

public deletePreConditions ( int idx, Lock aLock ) : void
idx int
aLock Lock
return void

deleteSubRules() public method

Part of the list interface for SubRules This deletion function removes an element from the collection in SubRules
public deleteSubRules ( int idx ) : void
idx int the index of the element to remove
return void

deleteSubRules() public method

public deleteSubRules ( int idx, Lock aLock ) : void
idx int
aLock Lock
return void

dispatch() public method

public dispatch ( XmlBooster.XmlBBaseVisitor v ) : void
v XmlBooster.XmlBBaseVisitor
return void

dispatch() public method

public dispatch ( XmlBooster.XmlBBaseVisitor v, bool visitSubNodes ) : void
v XmlBooster.XmlBBaseVisitor
visitSubNodes bool
return void

find() public method

public find ( Object search ) : bool
search Object
return bool

getActions() public method

Part of the list interface for Actions This function returns an element from the collection in Actions based on an index.
public getActions ( int idx ) : Action
idx int the index of the element to extract
return Action

getPreConditions() public method

Part of the list interface for PreConditions This function returns an element from the collection in PreConditions based on an index.
public getPreConditions ( int idx ) : PreCondition
idx int the index of the element to extract
return PreCondition

getSubRules() public method

Part of the list interface for SubRules This function returns an element from the collection in SubRules based on an index.
public getSubRules ( int idx ) : Rule
idx int the index of the element to extract
return Rule

indexOfActions() public method

Part of the list interface for Actions This function returns the index of an element in the collection.
public indexOfActions ( IXmlBBase el ) : int
el IXmlBBase the object to look for
return int

indexOfPreConditions() public method

Part of the list interface for PreConditions This function returns the index of an element in the collection.
public indexOfPreConditions ( IXmlBBase el ) : int
el IXmlBBase the object to look for
return int

indexOfSubRules() public method

Part of the list interface for SubRules This function returns the index of an element in the collection.
public indexOfSubRules ( IXmlBBase el ) : int
el IXmlBBase the object to look for
return int

insertActions() public method

Part of the list interface for Actions This insertion function inserts a new element in the collection in Actions
public insertActions ( int idx, Action el ) : void
idx int the index where the insertion must take place
el Action the element to insert
return void

insertActions() public method

public insertActions ( int idx, Action el, Lock aLock ) : void
idx int
el Action
aLock Lock
return void

insertPreConditions() public method

Part of the list interface for PreConditions This insertion function inserts a new element in the collection in PreConditions
public insertPreConditions ( int idx, PreCondition el ) : void
idx int the index where the insertion must take place
el PreCondition the element to insert
return void

insertPreConditions() public method

public insertPreConditions ( int idx, PreCondition el, Lock aLock ) : void
idx int
el PreCondition
aLock Lock
return void

insertSubRules() public method

Part of the list interface for SubRules This insertion function inserts a new element in the collection in SubRules
public insertSubRules ( int idx, Rule el ) : void
idx int the index where the insertion must take place
el Rule the element to insert
return void

insertSubRules() public method

public insertSubRules ( int idx, Rule el, Lock aLock ) : void
idx int
el Rule
aLock Lock
return void

parse() public method

This method is used by XMLBooster-generated code internally. Please refrain from using it, as it might produce unexpected results, and might change or even disappear in the future.
public parse ( XmlBooster.XmlBContext ctxt, string endingTag ) : void
ctxt XmlBooster.XmlBContext
endingTag string
return void

parseBody() public method

This method is used by XMLBooster-generated code internally. Please refrain from using it, as it might produce unexpected results, and might change or even disappear in the future.
public parseBody ( XmlBooster.XmlBContext ctxt ) : void
ctxt XmlBooster.XmlBContext
return void

removeActions() public method

Part of the list interface for Actions This deletion function removes an element from the collection in Actions If the object given in parameter is not found in the the collection, this function does nothing.
public removeActions ( IXmlBBase obj ) : void
obj IXmlBBase the object to remove
return void

removeActions() public method

public removeActions ( IXmlBBase obj, Lock aLock ) : void
obj IXmlBBase
aLock Lock
return void

removePreConditions() public method

Part of the list interface for PreConditions This deletion function removes an element from the collection in PreConditions If the object given in parameter is not found in the the collection, this function does nothing.
public removePreConditions ( IXmlBBase obj ) : void
obj IXmlBBase the object to remove
return void

removePreConditions() public method

public removePreConditions ( IXmlBBase obj, Lock aLock ) : void
obj IXmlBBase
aLock Lock
return void

removeSubRules() public method

Part of the list interface for SubRules This deletion function removes an element from the collection in SubRules If the object given in parameter is not found in the the collection, this function does nothing.
public removeSubRules ( IXmlBBase obj ) : void
obj IXmlBBase the object to remove
return void

removeSubRules() public method

public removeSubRules ( IXmlBBase obj, Lock aLock ) : void
obj IXmlBBase
aLock Lock
return void

setAllActions() public method

public setAllActions ( Lock aLock, System coll ) : void
aLock Lock
coll System
return void

setAllActions() public method

Part of the list interface for Actions
public setAllActions ( System coll ) : void
coll System a collection of elements which replaces /// Actions's current content.
return void

setAllPreConditions() public method

public setAllPreConditions ( Lock aLock, System coll ) : void
aLock Lock
coll System
return void

setAllPreConditions() public method

Part of the list interface for PreConditions
public setAllPreConditions ( System coll ) : void
coll System a collection of elements which replaces /// PreConditions's current content.
return void

setAllSubRules() public method

public setAllSubRules ( Lock aLock, System coll ) : void
aLock Lock
coll System
return void

setAllSubRules() public method

Part of the list interface for SubRules
public setAllSubRules ( System coll ) : void
coll System a collection of elements which replaces /// SubRules's current content.
return void

subElements() public method

This method is used by XMLBooster-generated code internally. Please refrain from using it, as it might produce unexpected results, and might change or even disappear in the future.
public subElements ( ArrayList l ) : void
l System.Collections.ArrayList
return void

unParse() public method

This method is used by XMLBooster-generated code internally. Please refrain from using it, as it might produce unexpected results, and might change or even disappear in the future.
public unParse ( TextWriter pw, bool typeId, string headingTag, string endingTag ) : void
pw System.IO.TextWriter
typeId bool
headingTag string
endingTag string
return void

unParseBody() public method

This method is used by XMLBooster-generated code internally. Please refrain from using it, as it might produce unexpected results, and might change or even disappear in the future.
public unParseBody ( TextWriter pw ) : void
pw System.IO.TextWriter
return void