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/JFCRadioButton.java

    r742 r835  
    44// Creation  : 2012 by pharms 
    55// Copyright : Patrick Harms, 2012 
     6 
    67package de.ugoe.cs.quest.plugin.jfc.guimodel; 
    78 
     
    1011/** 
    1112 * <p> 
    12  * TODO comment 
     13 * Class that represents radio buttons in JFC GUIs. 
    1314 * </p> 
    1415 *  
    15  * @version $Revision: $ $Date: 03.09.2012$ 
    16  * @author 2012, last modified by $Author: pharms$ 
     16 * @version 1.0 
     17 * @author Patrick Harms 
    1718 */ 
    1819public class JFCRadioButton extends JFCGUIElement implements IRadioButton { 
    1920 
    20     /**  */ 
     21    /** 
     22     * <p> 
     23     * Id for object serialization. 
     24     * </p> 
     25     */ 
    2126    private static final long serialVersionUID = 1L; 
    2227 
    2328    /** 
    2429     * <p> 
    25      * TODO: comment 
     30     * Constructor. Creates a new JFCRadioButton. 
    2631     * </p> 
    27      * 
     32     *  
    2833     * @param specification 
     34     *            specification of created GUI element 
    2935     * @param parent 
     36     *            parent of the created GUI element; null means that the element is a top-level 
     37     *            window 
    3038     */ 
    3139    public JFCRadioButton(JFCGUIElementSpec specification, JFCGUIElement parent) { 
     
    3341    } 
    3442 
     43    /* 
     44     * (non-Javadoc) 
     45     *  
     46     * @see de.ugoe.cs.quest.plugin.jfc.guimodel.JFCGUIElement#getElementDescriptor() 
     47     */ 
    3548    @Override 
    3649    protected String getElementDescriptor() { 
Note: See TracChangeset for help on using the changeset viewer.