KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ashkelon > pages > CommandInfo


1 package org.ashkelon.pages;
2
3 /**
4  * @author Eitan Suez
5  */

6 public class CommandInfo
7 {
8    private String JavaDoc command;
9    private String JavaDoc pageName;
10    private String JavaDoc className;
11    private String JavaDoc caption;
12    private String JavaDoc tableName;
13    private boolean inTrail;
14
15    public CommandInfo()
16    {
17       command = "";
18       pageName = "";
19       className = "";
20       inTrail = false;
21    }
22
23    public String JavaDoc getCommand() { return command; }
24    public void setCommand(String JavaDoc command) { this.command = command; }
25
26    public String JavaDoc getPageName() { return pageName; }
27    public void setPageName(String JavaDoc pageName) { this.pageName = pageName; }
28
29    public String JavaDoc getClassName() { return className; }
30    public void setClassName(String JavaDoc className) { this.className = className; }
31
32    public String JavaDoc getCaption() { return caption; }
33    public void setCaption(String JavaDoc caption) { this.caption = caption; }
34
35    public String JavaDoc getTableName() { return tableName; }
36    public void setTableName(String JavaDoc 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