Solver.java 825 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package com.miniframe.modo.temp.problem;
  2. public class Solver {
  3. private String cpacsPath;
  4. private String workflowPath;
  5. private String pythonPath;
  6. private String stype;
  7. public String getCpacsPath() {
  8. return cpacsPath;
  9. }
  10. public void setCpacsPath(String cpacsPath) {
  11. this.cpacsPath = cpacsPath;
  12. }
  13. public String getWorkflowPath() {
  14. return workflowPath;
  15. }
  16. public void setWorkflowPath(String workflowPath) {
  17. this.workflowPath = workflowPath;
  18. }
  19. public String getPythonPath() {
  20. return pythonPath;
  21. }
  22. public void setPythonPath(String pythonPath) {
  23. this.pythonPath = pythonPath;
  24. }
  25. public String getStype() {
  26. return stype;
  27. }
  28. public void setStype(String stype) {
  29. this.stype = stype;
  30. }
  31. }