ProgramRunResult.java 539 B

123456789101112131415161718192021222324252627282930
  1. package com.leanwo.management.service;
  2. /**
  3. * 程序运行结果.
  4. *
  5. * @author YangZhiJie1
  6. */
  7. public class ProgramRunResult {
  8. /** 子进程对象Process. */
  9. private Process process;
  10. /**
  11. * Gets the 子进程对象Process.
  12. *
  13. * @return the 子进程对象Process
  14. */
  15. public Process getProcess() {
  16. return process;
  17. }
  18. /**
  19. * Sets the 子进程对象Process.
  20. *
  21. * @param process the new 子进程对象Process
  22. */
  23. public void setProcess(Process process) {
  24. this.process = process;
  25. }
  26. }