Changeset 5725 for trunk


Ignore:
Timestamp:
2003-10-23T11:28:44+13:00 (21 years ago)
Author:
kjdon
Message:

added in stuff for the xml usage output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/perllib/classify/AZCompactSectionList.pm

    r2897 r5725  
    1313sub BEGIN {
    1414    @ISA = ('AZCompactList');
     15}
     16
     17my $options =
     18{   'name'     => "AZCompactSectionList",
     19    'desc'     => "{AZCompactSectionList.desc}",
     20    'inherits' => "Yes",
     21    'args'     => $arguments };
     22
     23sub new {
     24    my $class = shift (@_);
     25    my $self = new AZCompactList($class, @_);
     26
     27    # 14-05-02 To allow for proper inheritance of arguments - John Thompson
     28    my $option_list = $self->{'option_list'};
     29    push( @{$option_list}, $options );
     30
     31    return bless $self, $class;
    1532}
    1633
Note: See TracChangeset for help on using the changeset viewer.