Пример #1
0
  private void showReaction(Reaction r) {
    this.container.clear();

    Anchor anchor =
        new Anchor(
            r.getIdentifier(),
            "http://www.ebi.ac.uk/rhea/reaction.xhtml?id=" + r.getIdentifier(),
            "_blank");
    anchor.setTitle(r.getName());
    this.container.add(anchor);

    this.container.add(new RheaTable(r));
    fireEvent(new ReactionStructureLoadedEvent());
  }