📄 variablepara.java
字号:
package org.bpel.model.parameter;
public class VariablePara {
public VariablePara(String inputVariable,
String inputVarMT,
String outputVariable,
String outputVarMT,
String variableForMyRole,
String varForMyRoleMT) {
this.inputVariable = inputVariable;
this.inputVarMT = inputVarMT;
this.outputVariable = outputVariable;
this.outputVarMT = outputVarMT;
this.variableForMyRole = variableForMyRole;
this.varForMyRoleMT = varForMyRoleMT;
}
public String getInputVariable() {
return inputVariable;
}
public String getInputVarMT() {
return inputVarMT;
}
public String getOutputVariable() {
return outputVariable;
}
public String getOutputVarMT() {
return outputVarMT;
}
public String getVariableForMyRole() {
return variableForMyRole;
}
public String getVarForMyRoleMT() {
return varForMyRoleMT;
}
public void setInputVariable(String inputVariable) {
this.inputVariable = inputVariable;
}
public void setOutputVariable(String outputVariable) {
this.outputVariable = outputVariable;
}
public void setVariableForMyRole(String variableForMyRole) {
this.variableForMyRole = variableForMyRole;
}
private String inputVariable;
private String inputVarMT;
private String outputVariable;
private String outputVarMT;
private String variableForMyRole;
private String varForMyRoleMT;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -