Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
drseb committed Feb 29, 2016
1 parent 7ca7b75 commit aec7b59
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .settings/com.vaadin.integration.eclipse.prefs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
com.vaadin.integration.eclipse.previousCompileAction=theme
com.vaadin.integration.eclipse.useLatestNightly=false
com.vaadin.integration.eclipse.widgetsetCompilationEta=41585
com.vaadin.integration.eclipse.widgetsetDirty=false
com.vaadin.integration.eclipse.widgetsetDirty=true
eclipse.preferences.version=1
7 changes: 5 additions & 2 deletions src/hpoweb/HpowebUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,17 @@
import com.vaadin.event.FieldEvents.FocusEvent;
import com.vaadin.event.FieldEvents.FocusListener;
import com.vaadin.jsclipboard.JSClipboard;
import com.vaadin.server.ExternalResource;
import com.vaadin.server.Page;
import com.vaadin.server.VaadinRequest;
import com.vaadin.server.VaadinServlet;
import com.vaadin.shared.ui.label.ContentMode;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.Button.ClickListener;
import com.vaadin.ui.Component;
import com.vaadin.ui.Label;
import com.vaadin.ui.Link;
import com.vaadin.ui.Notification;
import com.vaadin.ui.UI;
import com.vaadin.ui.VerticalLayout;
Expand Down Expand Up @@ -170,14 +173,14 @@ else if (dataProvider instanceof IGeneDataProvider) {
*/
Label version = new Label("Ontology version: " + ontologyVersion);
Label copyright = new Label("Copyright 2015 - The Human Phenotype Ontology Project");
Label feedback = new Label("Question, Comments, Feedback: [email protected]");
Link feedback = new Link("Question, Comments, Feedback: [email protected]", new ExternalResource("http:https://drseb.github.io/"));
addLabelRow(gridContainer, version);
addLabelRow(gridContainer, copyright);
addLabelRow(gridContainer, feedback);

}

private void addLabelRow(Container gridContainer, Label label) {
private void addLabelRow(Container gridContainer, Component label) {
Row r = gridContainer.addRow();
Col c = r.addCol();
c.addComponent(label);
Expand Down

0 comments on commit aec7b59

Please sign in to comment.