Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/virtuosotechnologies/lib/basiccommand/BasicRadioContainerCommandNode.java


1   /*
2   ================================================================================
3   
4     FILE:  BasicRadioContainerCommandNode.java
5     
6     PROJECT:
7     
8       Virtuoso Utilities
9     
10    CONTENTS:
11    
12      A node representing a radio group node that is also a container. This
13      is for submenus and other such hierarchy branch points that also
14      serve as a radio group container.
15    
16    PROGRAMMERS:
17    
18      Daniel Azuma (DA)  <dazuma@kagi.com>
19    
20    COPYRIGHT:
21    
22      Copyright (C) 2003  Daniel Azuma  (dazuma@kagi.com)
23      
24      This program is free software; you can redistribute it and/or
25      modify it under the terms of the GNU General Public License as
26      published by the Free Software Foundation; either version 2
27      of the License, or (at your option) any later version.
28      
29      This program is distributed in the hope that it will be useful,
30      but WITHOUT ANY WARRANTY; without even the implied warranty of
31      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32      GNU General Public License for more details.
33      
34      You should have received a copy of the GNU General Public
35      License along with this program; if not, write to
36        Free Software Foundation, Inc.
37        59 Temple Place, Suite 330
38        Boston, MA 02111-1307 USA
39  
40  ================================================================================
41  */
42  
43  
44  package com.virtuosotechnologies.lib.basiccommand;
45  
46  
47  import com.virtuosotechnologies.lib.command.CommandNodeFlavor;
48  
49  
50  /**
51   * A node representing a radio group node that is also a container. This
52   * is for submenus and other such hierarchy branch points that also
53   * serve as a radio group container.
54   */
55  public class BasicRadioContainerCommandNode
56  extends BasicRadioGroupCommandNode
57  {
58    /**
59     * Constructor.
60     */
61    public BasicRadioContainerCommandNode()
62    {
63    }
64    
65    
66    /**
67     * Get the flavor of CommandNode
68     */
69    public CommandNodeFlavor getFlavor()
70    {
71      return RADIOCONTAINER_FLAVOR;
72    }
73  }