Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
303a0610
Commit
303a0610
authored
May 13, 2019
by
Piotr Gawron
Browse files
basic toString method implemented
parent
9233ccbb
Changes
1
Show whitespace changes
Inline
Side-by-side
model/src/main/java/lcsb/mapviewer/model/map/reaction/ReactionNode.java
View file @
303a0610
...
@@ -5,6 +5,7 @@ import javax.persistence.Entity;
...
@@ -5,6 +5,7 @@ import javax.persistence.Entity;
import
javax.persistence.ManyToOne
;
import
javax.persistence.ManyToOne
;
import
lcsb.mapviewer.model.map.species.Element
;
import
lcsb.mapviewer.model.map.species.Element
;
import
lcsb.mapviewer.modelutils.map.ElementUtils
;
/**
/**
* One of two known types of nodes in the {@link Reaction}. It defines input or
* One of two known types of nodes in the {@link Reaction}. It defines input or
...
@@ -92,4 +93,9 @@ public abstract class ReactionNode extends AbstractNode {
...
@@ -92,4 +93,9 @@ public abstract class ReactionNode extends AbstractNode {
this
.
stoichiometry
=
stoichiometry
;
this
.
stoichiometry
=
stoichiometry
;
}
}
@Override
public
String
toString
()
{
return
new
ElementUtils
().
getElementTag
(
this
);
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment