Ignore:
Timestamp:
09/20/12 10:36:09 (12 years ago)
Author:
sherbold
Message:
  • code documentation and clean-up
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCMenuButton.java

    r655 r835  
     1 
    12package de.ugoe.cs.quest.plugin.jfc.guimodel; 
    23 
     
    45 
    56/** 
    6  * TODO comment 
     7 * <p> 
     8 * Class that represents menu buttons in JFC GUIs. 
     9 * </p> 
    710 *  
    8  * @version $Revision: $ $Date: 13.05.2012$ 
    9  * @author 2012, last modified by $Author: patrick$ 
     11 * @version 1.0 
     12 * @author Patrick Harms 
    1013 */ 
    1114public class JFCMenuButton extends JFCButton implements IMenuButton { 
    1215 
    13     /**  */ 
     16    /** 
     17     * <p> 
     18     * Id for object serialization. 
     19     * </p> 
     20     */ 
    1421    private static final long serialVersionUID = 1L; 
    1522 
    1623    /** 
    17      * TODO: comment 
     24     * <p> 
     25     * Constructor. Creates a new JFCMenuButton. 
     26     * </p> 
    1827     *  
    19      * @param name 
    20      * @param type 
    21      * @param icon 
    22      * @param index 
    23      * @param hashCode 
     28     * @param specification 
     29     *            specification of created GUI element 
     30     * @param parent 
     31     *            parent of the created GUI element; null means that the element is a top-level 
     32     *            window 
    2433     */ 
    2534    public JFCMenuButton(JFCGUIElementSpec specification, JFCGUIElement parent) { 
     
    2736    } 
    2837 
     38    /* 
     39     * (non-Javadoc) 
     40     *  
     41     * @see de.ugoe.cs.quest.plugin.jfc.guimodel.JFCButton#getElementDescriptor() 
     42     */ 
    2943    @Override 
    3044    protected String getElementDescriptor() { 
Note: See TracChangeset for help on using the changeset viewer.