Ignore:
Timestamp:
07/26/13 08:29:32 (11 years ago)
Author:
pharms
Message:
  • added some Java Docs
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-ui-swt/src/main/java/de/ugoe/cs/autoquest/ui/swt/GuiModelTabComposite.java

    r927 r1275  
    3030/** 
    3131 * <p> 
    32  * TODO comment 
     32 * listing GUI models contained in the data store 
    3333 * </p> 
    3434 *  
    35  * @version $Revision: $ $Date: Aug 28, 2012$ 
    36  * @author 2012, last modified by $Author: sherbold$ 
     35 * @author 2012, Steffen Herbold, Patrick Harms 
    3736 */ 
    3837public class GuiModelTabComposite extends Composite { 
     
    4241    /** 
    4342     * Create the composite. 
    44      *  
    45      * @param parent 
    46      * @param style 
    4743     */ 
    4844    public GuiModelTabComposite(Composite parent, int style) { 
     
    5147    } 
    5248 
     49    /** 
     50     * <p> 
     51     * fills the list of available GUI models and provides buttons for their detailed visualization 
     52     * </p> 
     53     */ 
    5354    private void createContents() { 
    5455        setLayout(new GridLayout(5, false)); 
     
    6162            @Override 
    6263            public void widgetSelected(SelectionEvent e) { 
    63                 // TODO 
    6464                String[] selectedStrings = guiModelList.getSelection(); 
    6565                if (selectedStrings.length == 0) { 
     
    9292    } 
    9393 
     94    /** 
     95     * Disable the check that prevents subclassing of SWT components 
     96     */ 
    9497    @Override 
    9598    protected void checkSubclass() { 
     
    97100    } 
    98101 
     102    /** 
     103     * <p> 
     104     * convenience method for updating the list of available GUI models 
     105     * </p> 
     106     */ 
    99107    public void updateModelList() { 
    100108        guiModelList.removeAll(); 
Note: See TracChangeset for help on using the changeset viewer.