C# Class DataDictionary.Generated.Translation

Inheritance: DataDictionary.Namable
Datei anzeigen Open project: ERTMSSolutions/ERTMSFormalSpecs Class Usage Examples

Public Methods

Method Description
NotifyControllers ( Lock aLock ) : void
Translation ( ) : System
allSourceTexts ( ) : ArrayList

Part of the list interface for SourceTexts

allSubSteps ( ) : ArrayList

Part of the list interface for SubSteps

appendSourceTexts ( Lock aLock, SourceText el ) : void
appendSourceTexts ( SourceText el ) : void

Part of the list interface for SourceTexts

appendSourceTexts ( System coll ) : void

Part of the list interface for SourceTexts

appendSourceTexts ( System coll, Lock aLock ) : void
appendSubSteps ( Lock aLock, SubStep el ) : void
appendSubSteps ( SubStep el ) : void

Part of the list interface for SubSteps

appendSubSteps ( System coll ) : void

Part of the list interface for SubSteps

appendSubSteps ( System coll, Lock aLock ) : void
copyTo ( Translation other ) : void
countSourceTexts ( ) : int

Part of the list interface for SourceTexts

countSubSteps ( ) : int

Part of the list interface for SubSteps

deleteSourceTexts ( int idx ) : void

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

deleteSourceTexts ( int idx, Lock aLock ) : void
deleteSubSteps ( int idx ) : void

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

deleteSubSteps ( int idx, Lock aLock ) : void
dispatch ( XmlBooster.XmlBBaseVisitor v ) : void
dispatch ( XmlBooster.XmlBBaseVisitor v, bool visitSubNodes ) : void
find ( Object search ) : bool
getImplemented ( ) : bool
getObsoleteComment ( ) : string
getSourceTexts ( int idx ) : SourceText

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

getSubSteps ( int idx ) : SubStep

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

indexOfSourceTexts ( IXmlBBase el ) : int

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

indexOfSubSteps ( IXmlBBase el ) : int

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

insertSourceTexts ( int idx, SourceText el ) : void

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

insertSourceTexts ( int idx, SourceText el, Lock aLock ) : void
insertSubSteps ( int idx, SubStep el ) : void

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

insertSubSteps ( int idx, SubStep 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.
removeSourceTexts ( IXmlBBase obj ) : void

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

removeSourceTexts ( IXmlBBase obj, Lock aLock ) : void
removeSubSteps ( IXmlBBase obj ) : void

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

removeSubSteps ( IXmlBBase obj, Lock aLock ) : void
setAllSourceTexts ( Lock aLock, System coll ) : void
setAllSourceTexts ( System coll ) : void

Part of the list interface for SourceTexts

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

Part of the list interface for SubSteps

setImplemented ( bool v ) : void
setObsoleteComment ( string v ) : void
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
getSourceTexts ( ) : ArrayList

Part of the list interface for SourceTexts

getSubSteps ( ) : ArrayList

Part of the list interface for SubSteps

Method Details

NotifyControllers() public method

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

Translation() public method

public Translation ( ) : System
return System

allSourceTexts() public method

Part of the list interface for SourceTexts
public allSourceTexts ( ) : ArrayList
return System.Collections.ArrayList

allSubSteps() public method

Part of the list interface for SubSteps
public allSubSteps ( ) : ArrayList
return System.Collections.ArrayList

appendSourceTexts() public method

public appendSourceTexts ( Lock aLock, SourceText el ) : void
aLock Lock
el SourceText
return void

appendSourceTexts() public method

Part of the list interface for SourceTexts
public appendSourceTexts ( SourceText el ) : void
el SourceText a SourceText to add to the collection in /// SourceTexts
return void

appendSourceTexts() public method

Part of the list interface for SourceTexts
public appendSourceTexts ( System coll ) : void
coll System a collection ofSourceTexts to add to the collection in /// SourceTexts
return void

appendSourceTexts() public method

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

appendSubSteps() public method

public appendSubSteps ( Lock aLock, SubStep el ) : void
aLock Lock
el SubStep
return void

appendSubSteps() public method

Part of the list interface for SubSteps
public appendSubSteps ( SubStep el ) : void
el SubStep a SubStep to add to the collection in /// SubSteps
return void

appendSubSteps() public method

Part of the list interface for SubSteps
public appendSubSteps ( System coll ) : void
coll System a collection ofSubSteps to add to the collection in /// SubSteps
return void

appendSubSteps() public method

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

copyTo() public method

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

countSourceTexts() public method

Part of the list interface for SourceTexts
public countSourceTexts ( ) : int
return int

countSubSteps() public method

Part of the list interface for SubSteps
public countSubSteps ( ) : int
return int

deleteSourceTexts() public method

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

deleteSourceTexts() public method

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

deleteSubSteps() public method

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

deleteSubSteps() public method

public deleteSubSteps ( 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

getImplemented() public method

public getImplemented ( ) : bool
return bool

getObsoleteComment() public method

public getObsoleteComment ( ) : string
return string

getSourceTexts() public method

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

getSubSteps() public method

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

indexOfSourceTexts() public method

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

indexOfSubSteps() public method

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

insertSourceTexts() public method

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

insertSourceTexts() public method

public insertSourceTexts ( int idx, SourceText el, Lock aLock ) : void
idx int
el SourceText
aLock Lock
return void

insertSubSteps() public method

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

insertSubSteps() public method

public insertSubSteps ( int idx, SubStep el, Lock aLock ) : void
idx int
el SubStep
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

removeSourceTexts() public method

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

removeSourceTexts() public method

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

removeSubSteps() public method

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

removeSubSteps() public method

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

setAllSourceTexts() public method

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

setAllSourceTexts() public method

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

setAllSubSteps() public method

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

setAllSubSteps() public method

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

setImplemented() public method

public setImplemented ( bool v ) : void
v bool
return void

setObsoleteComment() public method

public setObsoleteComment ( string v ) : void
v string
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