Interface ICustomizationRBTQuestion
-
- All Superinterfaces:
com4j.Com4jObject
public interface ICustomizationRBTQuestion extends com4j.Com4jObject
A Business Criticality or failure probability criterion, used to assess a risk.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com4j.Com4jObject
addAnswer()
Adds a new possible value.com4j.Com4jObject
answerByID(int id)
Returns the specified value.IList
answers()
The IList of CustomizationRBTAnswer objects of all possible values for this criterion, ordered by weight.java.lang.Object
answers(int index)
void
deleteAnswer(int id)
Deletes a possible value specified by ID.int
id()
The CustomizationRBTQuestion unique ID.java.lang.String
questionDescription()
The criterion's description.void
questionDescription(java.lang.String pQuestionDescription)
The criterion's description.int
questionOrder()
The (non unique) criterion's order of display in UI.void
questionOrder(int pnQuestionOrder)
The (non unique) criterion's order of display in UI.java.lang.String
questionText()
The criterion's text.void
questionText(java.lang.String pQuestionText)
The criterion's text.
-
-
-
Method Detail
-
id
int id()
The CustomizationRBTQuestion unique ID.
Getter method for the COM property "ID"
- Returns:
- Returns a value of type int
-
answers
IList answers()
The IList of CustomizationRBTAnswer objects of all possible values for this criterion, ordered by weight.
Getter method for the COM property "Answers"
- Returns:
- Returns a value of type step.repository.alm.v16.otaclient.IList
-
answers
java.lang.Object answers(int index)
-
answerByID
com4j.Com4jObject answerByID(int id)
Returns the specified value.
Getter method for the COM property "AnswerByID"
- Parameters:
id
- Mandatory int parameter.- Returns:
- Returns a value of type com4j.Com4jObject
-
addAnswer
com4j.Com4jObject addAnswer()
Adds a new possible value. Returns the new value as a CustomizationRBTAnswer object.
- Returns:
- Returns a value of type com4j.Com4jObject
-
deleteAnswer
void deleteAnswer(int id)
Deletes a possible value specified by ID.
- Parameters:
id
- Mandatory int parameter.
-
questionText
java.lang.String questionText()
The criterion's text.
Getter method for the COM property "QuestionText"
- Returns:
- Returns a value of type java.lang.String
-
questionText
void questionText(java.lang.String pQuestionText)
The criterion's text.
Setter method for the COM property "QuestionText"
- Parameters:
pQuestionText
- Mandatory java.lang.String parameter.
-
questionDescription
java.lang.String questionDescription()
The criterion's description.
Getter method for the COM property "QuestionDescription"
- Returns:
- Returns a value of type java.lang.String
-
questionDescription
void questionDescription(java.lang.String pQuestionDescription)
The criterion's description.
Setter method for the COM property "QuestionDescription"
- Parameters:
pQuestionDescription
- Mandatory java.lang.String parameter.
-
questionOrder
int questionOrder()
The (non unique) criterion's order of display in UI.
Getter method for the COM property "QuestionOrder"
- Returns:
- Returns a value of type int
-
questionOrder
void questionOrder(int pnQuestionOrder)
The (non unique) criterion's order of display in UI.
Setter method for the COM property "QuestionOrder"
- Parameters:
pnQuestionOrder
- Mandatory int parameter.
-
-