Changes between Version 12 and Version 13 of APP_LAYOUT_MYDOGGY_R0


Ignore:
Timestamp:
01/14/09 10:21:31 (16 years ago)
Author:
nvasilev
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • APP_LAYOUT_MYDOGGY_R0

    v12 v13  
    5454 
    5555 * Create class MDCompoundLayoutElement which extends MDLayoutElement and implement MDManageable. It describes containers like the flaps and tabs, that holds other MDLayoutElements and manage them. Apart of the implementation of the method toolWindowManager(), it should declare the abstract methods: 
    56   * add(MdLayoutElement) used for adding element to the list of contained elements and registering it in the corresponding tool window manager 
    57   * remove(MdLayoutElement) used for removing element from the list of the contained elements and unregistering it from the tool window manager 
     56  * addMDElement(MdLayoutElement) used for adding element to the list of contained elements and registering it in the corresponding tool window manager 
     57  * removeMDElement(MdLayoutElement) used for removing element from the list of the contained elements and unregistering it from the tool window manager 
     58  * and also should implement the inherited property by MDManageable toolWindowManager() used by the flaps and the tabs for managing of the children elements (correspondingly tabs and palettes). 
    5859 
    5960 * Create class MDFlap which should extend MDCompoundLayoutElement and implement the methods toolWindowManager(), add() and remove(). It should have the properties: 
    6061  * flap() used for the Flap structure 
    6162  * tabs() used for the list of all tabs which belongs to this flap 
    62   * parent() - used for link to the main window, where this flap is attached to. 
     63  * parentMainWindow() - used for link to the main window, where this flap is attached to 
     64  * swingComponent() - (inherited by MDLayoutElement) used for graphical representation of the flap. 
    6365   
    6466 * Create class MDTab which should extend MDCompoundLayoutElement and implement the methods toolWindowManager(), add() and remove(). It also should have the properties: 
    6567  * tab() used for the Tab structure 
    6668  * palettes() used for the list of all palettes which are attached to this tab 
    67   * parent() - used for link to the flap, which holds this tab. 
     69  * parentFlap() - used for link to the flap, which holds this tab. 
     70  * swingComponent() - (inherited by MDLayoutElement) used for graphical representation of the tab. 
    6871 
    6972 * Create class MDPalette which should extend MDLayoutElement class. It should have the properties: 
    7073  * palette() used for the Palette structure 
    71   * parent() - used for connection to the tab, which possess this palette. 
     74  * parentTab() - used for connection to the tab, which possess this palette. 
     75  * swingComponent() -  (inherited by MDLayoutElement) used for graphical representation of the palette. 
    7276 
    73 * The demo test org.sophie2.main.layout.mydoggy.MyDoggyLayoutTest.java tests creation, updating, showing and hiding of MDMainWindow components. 
     77 * Create abstract factory class MDToolWindowFactory, which is used for graphical configuration of the tool windows that the contained elements posses. 
     78 
     79* The demo test org.sophie2.main.layout.mydoggy.MyDoggyLayoutDemo.java tests creation, updating, showing and hiding of MDMainWindow components. 
    7480 
    7581= Implementation =