Included libraries | Package variables | General documentation | Methods |
WebCvs | Raw content |
entry_id | No description | Code |
new | No description | Code |
sequence | No description | Code |
split_counter | No description | Code |
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 ($entry_id, $adaptor, $split_counter, $sequence) = rearrange([qw(ENTRY_ID ADAPTOR SPLIT_COUNTER SEQUENCE )],@_); $self->entry_id ( $entry_id ); $self->adaptor ( $adaptor ); $self->split_counter ( $split_counter ); $self->sequence ( $sequence ); return $self; # success - we hope!}
sequence | description | prev | next | Top |
my $self = shift; $self->{'sequence'} = shift if ( @_ ); return $self->{'sequence'}; } 1;}
split_counter | description | prev | next | Top |
my $self = shift; $self->{'split_counter'} = shift if ( @_ ); return $self->{'split_counter'};}