OTX-Runtime for Java
|
|
Contains Packages and settings. More...
Public Member Functions | |
IProcedure | GetMainProcedure () |
Gets main Procedure of startup Document. More... | |
String | GetName () |
Gets Project name. More... | |
IPackage[] | GetPackages () |
Gets all Packages. More... | |
IPlayerProject | GetPlayerProject () |
Gets PlayerProject. More... | |
IProcedure | GetProcedureByName (String fullName) |
Get Procedure base on it's full name. More... | |
IProjectSettings | GetProjectSettings () |
Gets the Project Settings. More... | |
IRuntimeManager | GetRuntimeManager () |
Gets RuntimeManager. More... | |
Map< String, String > | GetSettings () |
Gets the Project Settings. More... | |
ISignature | GetSignatureByName (String fullName) |
Gets Signature base on it's full name. More... | |
IDocument | GetStartupDocument () |
Gets startup Document. More... | |
String | GetVersion () |
Gets Project version. More... | |
void | SetSettings (Map< String, String > settings) |
Sets the Project Settings. More... | |
Contains Packages and settings.
IProcedure OpenTestSystem.Otx.Runtime.Api.Project.IProject.GetMainProcedure | ( | ) |
Gets main Procedure of startup Document.
String OpenTestSystem.Otx.Runtime.Api.Project.IProject.GetName | ( | ) |
IPackage [] OpenTestSystem.Otx.Runtime.Api.Project.IProject.GetPackages | ( | ) |
Gets all Packages.
IPlayerProject OpenTestSystem.Otx.Runtime.Api.Project.IProject.GetPlayerProject | ( | ) |
Gets PlayerProject.
IProcedure OpenTestSystem.Otx.Runtime.Api.Project.IProject.GetProcedureByName | ( | String | fullName | ) |
Get Procedure base on it's full name.
IProjectSettings OpenTestSystem.Otx.Runtime.Api.Project.IProject.GetProjectSettings | ( | ) |
Gets the Project Settings.
As an alternative it is possible to handle the settings inside Settings.
IRuntimeManager OpenTestSystem.Otx.Runtime.Api.Project.IProject.GetRuntimeManager | ( | ) |
Gets RuntimeManager.
Map<String, String> OpenTestSystem.Otx.Runtime.Api.Project.IProject.GetSettings | ( | ) |
Gets the Project Settings.
Gets the Project Settings as a map of names and value pairs. The getter returns all settings. The setter sets only the name value pairs in the given map. The other settings will not be influenced. To improve the performance, it is recommended to set all to be changed setting in one map.
As an alternative it is possible to handle the single settings inside ProjectSettings. This is more convenient and more type safe but slower than this property.
ISignature OpenTestSystem.Otx.Runtime.Api.Project.IProject.GetSignatureByName | ( | String | fullName | ) |
Gets Signature base on it's full name.
fullName | The full name of signature. |
IDocument OpenTestSystem.Otx.Runtime.Api.Project.IProject.GetStartupDocument | ( | ) |
Gets startup Document.
String OpenTestSystem.Otx.Runtime.Api.Project.IProject.GetVersion | ( | ) |
void OpenTestSystem.Otx.Runtime.Api.Project.IProject.SetSettings | ( | Map< String, String > | settings | ) |
Sets the Project Settings.
Sets the Project Settings as a map of names and value pairs. The getter returns all settings. The setter sets only the name value pairs in the given map. The other settings will not be influenced. To improve the performance, it is recommended to set all to be changed setting in one map.
As an alternative it is possible to handle the single settings inside ProjectSettings. This is more convenient and more type safe but slower than this property.
settings | A map of property names and setting values. |