Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 package org.ashkelon.pages; 2 3 6 public class CommandInfo 7 { 8 private String command; 9 private String pageName; 10 private String className; 11 private String caption; 12 private String tableName; 13 private boolean inTrail; 14 15 public CommandInfo() 16 { 17 command = ""; 18 pageName = ""; 19 className = ""; 20 inTrail = false; 21 } 22 23 public String getCommand() { return command; } 24 public void setCommand(String command) { this.command = command; } 25 26 public String getPageName() { return pageName; } 27 public void setPageName(String pageName) { this.pageName = pageName; } 28 29 public String getClassName() { return className; } 30 public void setClassName(String className) { this.className = className; } 31 32 public String getCaption() { return caption; } 33 public void setCaption(String caption) { this.caption = caption; } 34 35 public String getTableName() { return tableName; } 36 public void setTableName(String tableName) { this.tableName = tableName; } 37 38 public boolean getInTrail() { return inTrail; } 39 public boolean isInTrail() { return inTrail; } 40 public void setInTrail(boolean inTrail) { this.inTrail = inTrail; } 41 42 } 43
| Popular Tags
|