| 123456789101112131415161718192021222324252627282930 |
- package com.leanwo.management.service;
- /**
- * 程序运行结果.
- *
- * @author YangZhiJie1
- */
- public class ProgramRunResult {
-
- /** 子进程对象Process. */
- private Process process;
- /**
- * Gets the 子进程对象Process.
- *
- * @return the 子进程对象Process
- */
- public Process getProcess() {
- return process;
- }
- /**
- * Sets the 子进程对象Process.
- *
- * @param process the new 子进程对象Process
- */
- public void setProcess(Process process) {
- this.process = process;
- }
- }
|