variablepara.java
来自「一个利用图形编辑器生成BPEL代码的建模工具代码」· Java 代码 · 共 57 行
JAVA
57 行
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 + =
减小字号Ctrl + -
显示快捷键?