Changeset 1031 for trunk/src


Ignore:
Timestamp:
10/27/11 08:27:15 (13 years ago)
Author:
lgiessmann
Message:

gdl-frontend: Widgets: refactored all files and updated all TODOs

Location:
trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/TODO.txt

    r1001 r1031  
    22     e.i. the passed topics and associations must be exported with all characteristics and associations,
    33     and all referenced topics must be exported as stubs
    4 * implement all constraints
    5    * TM-generation
    6    * TM-consumption
    7    * TM-validation
     4* finalise GdltopicView.getContent()
     5* finalise TmHelper.getTmValuesForTypeConstraint()
     6* finalise GdlPanel.doValidate()
     7* finalise GdlCheckBox
     8* finalise GdlCommitButton
     9* finalise GdlCreateButton
     10* finalise GdlRadioButton
     11* finalise GdlUnit
     12* finalise GdlTitle.setWidth()
     13* finalise GdlTitle.getSelectedValues()
     14* finalise GdlInfo.GdlInfo()
     15* finalise GdlReference.GdlReference()
     16* finalise GdlReference.addSubItem()
     17* finalise GdlReference.ReferenceClickHandler.onClick()
     18* finalise GdlTopicView.getContent()
     19* finalise GdlSpecialTopicView
     20* finalise GdlSpecialEditorTopicView
     21* finalise GdlSpecialCreatorTopicView
     22* finalise GdlEditorAssociationView
     23* finalise GdlDefaultTopicView
     24* finalise GdlDefaultCreatorTopicView
     25* finalise GdlDefaultEditorTopicView
     26* finalise GdlAssociationView.getContent()
    827* Fix css-pseudo-class-handlers
  • TabularUnified trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestLoadSchemaCallback.java

    r1002 r1031  
    6666                                        Window.alert("Execution Error: " + e.getMessage());
    6767                                }catch(Exception e){
    68                                         Window.alert("panel: " + panel + ", tm: " + panel.getSchemaTm() + "\ncaught error: " + e.getLocalizedMessage()); // TODO: implement smarter error handling
     68                                        Window.alert("panel: " + panel + ", tm: " + panel.getSchemaTm() + "\ncaught error: " + e.getLocalizedMessage());
    6969                                        e.printStackTrace();
    7070                                }
  • TabularUnified trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCreateButton.java

    r872 r1031  
    99
    1010public class GdlCreateButton extends GdlActionButton {
    11         // TOOD: is this class really necessary or is GdlCommitButton sufficient???
    1211        // TODO: implement
    1312       
  • TabularUnified trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlDeleteButton.java

    r875 r1031  
    1313
    1414public class GdlDeleteButton extends GdlActionButton {
    15         // TODO: implement
    16        
    1715        protected GdlDeleteButton(){
    1816                super();
  • TabularUnified trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/container/GdlList.java

    r818 r1031  
    281281        @Override
    282282        public GdlVisibleObject append(Topic ancestor, Topic current) throws InvalidGdlSchemaException, ExecutionException {
    283                 // TODO Auto-generated method stub
    284283                if(this.subElements.size() == 0) return null;
    285284                if(this.storedItems == null) this.storedItems = this.containsItems();
  • TabularUnified trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/GdlErrorTypes.java

    r531 r1031  
    99        ViewCreationError,
    1010        ExecutionError
    11         // TODO: ...
    1211}
  • TabularUnified trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java

    r933 r1031  
    7171                                        Window.alert("Execution Error: " + e.getMessage());
    7272                                }catch(Exception e){
    73                                         Window.alert("panel: " + panel + ", tm: " + panel.getSchemaTm() + "\ncaught error: " + e.getLocalizedMessage()); // TODO: implement smarter error handling
     73                                        Window.alert("panel: " + panel + ", tm: " + panel.getSchemaTm() + "\ncaught error: " + e.getLocalizedMessage());
    7474                                        e.printStackTrace();
    7575                                }
Note: See TracChangeset for help on using the changeset viewer.