Included libraries | Package variables | General documentation | Methods |
WebCvs | Raw content |
entry_id | No description | Code |
keyword | No description | Code |
new | No description | Code |
entry_id | description | prev | next | Top |
my $self = shift; $self->{'entry_id'} = shift if ( @_ ); return $self->{'entry_id'};}
keyword | description | prev | next | Top |
my $self = shift; $self->{'keyword'} = shift if ( @_ ); return $self->{'keyword'}; } 1;}
new | description | prev | next | Top |
my $caller = shift; my $class = ref($caller) || $caller; my $self = $class->SUPER::new(@_); my ($dbid, $entry_id, $adaptor, $keyword) = rearrange([qw(DBID ENTRY_ID ADAPTOR KEYWORD )],@_); $self->dbID ( $dbid ); $self->entry_id ( $entry_id ); $self->adaptor ( $adaptor ); $self->keyword ( $keyword ); return $self; # success - we hope!}