Skip to content
Snippets Groups Projects
Commit 98c194bf authored by Felix Kokocinski's avatar Felix Kokocinski
Browse files

added sub dbID

parent 360bd093
No related branches found
No related tags found
No related merge requests found
......@@ -93,7 +93,6 @@ sub new {
return $self;
}
=head2 name
Arg [1] : (optional) string $type
......@@ -114,6 +113,27 @@ sub name {
return $self->{'name'};
}
=head2 dbID
Arg [1] : (optional) int id
Example : $ditag_id = $ditag->dbID;
Description: Getter/Setter for the dbID of a ditag
Returntype : int
Caller : general
=cut
sub dbID {
my $self = shift;
if(@_) {
$self->{'dbID'} = shift;
}
return $self->{'dbID'};
}
=head2 type
Arg [1] : (optional) string $type
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment