D:\NewZebra\JavaApplications\DesignPatternsProject\src\behavior_patterns\command_pattern_nested_menu\CommandObject.java
 1 /* 
 2  * CommandObject.java
 3  *
 4  * Disclaimer:
 5  * ZebraSoft.com disclaims all warrantees with regard to documents/programs, including 
 6  * all implied warranties. In no event shall ZebraSoft.com be liable for indirect or 
 7  * consequential damages or any damages whatsoever resulting from loss of use, data or 
 8  * profits arising out of the use of documents/programs.
 9  * 
10  * All content included on this site, such as text, graphics, logos, button icons, 
11  * images, audio clips, video clips, digital downloads, programs, data compilations, 
12  * and software, is the property of ZebraSoft.com or its content suppliers and 
13  * protected by United States and international copyright laws. 
14  *
15  * This site or any portion of this site may not be reproduced, duplicated, 
16  * copied, sold, resold, visited, or otherwise exploited for any commercial 
17  * purpose without express written consent of ZebraSoft.com.
18  */
19 
20 package behavior_patterns.command_pattern_nested_menu;
21 
22 /**
23  *
24  * @author Sam Eldin
25  */
26 import java.text.*;
27 import java.util.*;
28 
29 public class CommandObject {
30     
31     String          commandName     = "default";
32     String          commandOption   = "NA";
33     Command         itemCommand     = null;
34     Vector          nestedCommandVector   = null;
35     
36     /** Creates a new instance of CommandObject */
37     public CommandObject() {
38     }
39     
40 }
41 
42