View Javadoc

1   package com.tapina.robe.swi.os;
2   
3   import java.util.Date;
4   
5   /***
6    * Created by IntelliJ IDEA.
7    * User: gareth
8    * Date: 28-Apr-2005
9    * Time: 08:10:38
10   * To change this template use File | Settings | File Templates.
11   */
12  public final class AppEnvironment {
13      String commandLine;
14      int ramLimit;
15      Date startTime;
16  
17      public AppEnvironment(String commandLine, int ramLimit, Date startTime) {
18          this.commandLine = commandLine;
19          this.ramLimit = ramLimit;
20          this.startTime = startTime;
21      }
22  
23      public final String getCommandLine() {
24          return commandLine;
25      }
26  
27      public final void setCommandLine(String commandLine) {
28          this.commandLine = commandLine;
29      }
30  
31      public final int getRamLimit() {
32          return ramLimit;
33      }
34  
35      public final void setRamLimit(int ramLimit) {
36          this.ramLimit = ramLimit;
37      }
38  
39      public final Date getStartTime() {
40          return startTime;
41      }
42  
43      public final void setStartTime(Date startTime) {
44          this.startTime = startTime;
45      }
46  }