123456789101112131415161718192021222324252627282930313233343536373839 |
- package com.miniframe.modo.temp.problem;
- public class Solver {
- private String cpacsPath;
- private String workflowPath;
- private String pythonPath;
- private String stype;
- public String getCpacsPath() {
- return cpacsPath;
- }
- public void setCpacsPath(String cpacsPath) {
- this.cpacsPath = cpacsPath;
- }
- public String getWorkflowPath() {
- return workflowPath;
- }
- public void setWorkflowPath(String workflowPath) {
- this.workflowPath = workflowPath;
- }
- public String getPythonPath() {
- return pythonPath;
- }
- public void setPythonPath(String pythonPath) {
- this.pythonPath = pythonPath;
- }
- public String getStype() {
- return stype;
- }
- public void setStype(String stype) {
- this.stype = stype;
- }
- }
|