Changeset 5658 for trunk


Ignore:
Timestamp:
Jun 5, 2015 8:38:55 AM (9 years ago)
Author:
ldelgass
Message:

style fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gui/scripts/drawing.tcl

    r5657 r5658  
    1717
    1818itcl::class Rappture::Drawing {
     19    constructor {xmlobj path} {
     20        # defined below
     21    }
     22    destructor {
     23        # defined below
     24    }
     25
     26    public method label { elem }
     27    public method type { elem }
     28    public method style { elem }
     29    public method shape { elem }
     30    public method values { elem }
     31    public method data { elem }
     32    public method hints {{keyword ""}}
     33    public method components { args }
     34
    1935    private variable _drawing
    2036    private variable _xmlobj
     
    2642    private variable _hints
    2743    private variable _units
    28 
    29     constructor {xmlobj path} {
    30         # defined below
    31     }
    32     destructor {
    33         # defined below
    34     }
    35 
    36     public method label { elem }
    37     public method type { elem }
    38     public method style { elem }
    39     public method shape { elem }
    40     public method values { elem }
    41     public method data { elem }
    42     public method hints {{keyword ""}}
    43     public method components { args }
    4444}
    4545
Note: See TracChangeset for help on using the changeset viewer.