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