Skip to content
Snippets Groups Projects
Commit 9933509e authored by Goik Martin's avatar Goik Martin
Browse files

Working integer list example

parent e7d5c455
No related branches found
No related tags found
No related merge requests found
package de.hdm_stuttgart.mi.company.ui; package de.hdm_stuttgart.mi.company.ui;
import java.util.SortedSet;
import java.util.TreeSet;
import javax.servlet.annotation.WebServlet; import javax.servlet.annotation.WebServlet;
import com.vaadin.annotations.Theme; import com.vaadin.annotations.Theme;
import com.vaadin.annotations.Title; import com.vaadin.annotations.Title;
import com.vaadin.annotations.VaadinServletConfiguration; import com.vaadin.annotations.VaadinServletConfiguration;
import com.vaadin.data.Property;
import com.vaadin.data.Property.ValueChangeEvent;
import com.vaadin.data.util.ObjectProperty;
import com.vaadin.server.VaadinRequest; import com.vaadin.server.VaadinRequest;
import com.vaadin.server.VaadinServlet; import com.vaadin.server.VaadinServlet;
import com.vaadin.ui.GridLayout;
import com.vaadin.ui.HorizontalLayout; import com.vaadin.ui.HorizontalLayout;
import com.vaadin.ui.Label; import com.vaadin.ui.Label;
import com.vaadin.ui.TextField;
import com.vaadin.ui.UI; import com.vaadin.ui.UI;
import com.vaadin.ui.VerticalLayout; import com.vaadin.ui.VerticalLayout;
...@@ -20,51 +28,67 @@ import com.vaadin.ui.VerticalLayout; ...@@ -20,51 +28,67 @@ import com.vaadin.ui.VerticalLayout;
@Theme("valo") @Theme("valo")
public class HelloUi extends UI { public class HelloUi extends UI {
private static final long serialVersionUID = -307591917714387247L; private static final long serialVersionUID = -307591917714387247L;
@Override static String convert(final SortedSet<Integer> values) {
protected void init(VaadinRequest request) { if (0 == values.size()) {
// The root of the component hierarchy return "";
VerticalLayout content = new VerticalLayout(); } else {
content.setSizeFull(); // Use entire window final StringBuffer ret = new StringBuffer(values.first().toString());
setContent(content); // Attach to the UI final Integer v[] = values.toArray(new Integer[values.size()]);
for (int i = 1; i < v.length; i++) {
// Add some component ret.append(", " + v[i]);
content.addComponent(new Label("Hello!")); }
return ret.toString();
// Layout inside layout }
HorizontalLayout hor = new HorizontalLayout(); }
hor.setSizeFull(); // Use all available space
final SortedSet<Integer> values = new TreeSet<Integer>();
// // Couple of horizontally laid out components
// Tree tree = new Tree("My Tree", @Override
// TreeExample.createTreeContent()); protected void init(VaadinRequest request) {
// hor.addComponent(tree);
// final GridLayout grid = new GridLayout(2, 3);
// Table table = new Table("My Table",
// TableExample.generateContent()); setContent(grid); // Attach to the UI
// table.setSizeFull();
// hor.addComponent(table); // Add or remove value
// hor.setExpandRatio(table, 1); // Expand to fill final ObjectProperty<Integer>
addInteger = new ObjectProperty<Integer>(0),
content.addComponent(hor); removeInteger = new ObjectProperty<Integer>(0);
content.setExpandRatio(hor, 1); // Expand to fill
final TextField
} addEditor = new TextField(addInteger),
removeEditor = new TextField(removeInteger);
/** Deployed as a Servlet or Portlet.
* final Label output = new Label();
* You can specify additional servlet parameters like the URI and UI
* class name and turn on production mode when you have finished developing the application. grid.addComponents(
*/ new Label("Add value:"), addEditor,
@WebServlet(urlPatterns = "/*") new Label("Remove value:"), removeEditor,
@VaadinServletConfiguration(ui = HelloUi.class, productionMode = false) new Label("Numbers:"), output);
public static class MyUIServlet extends VaadinServlet {
addEditor.addValueChangeListener(event -> {
/** final Integer i = addInteger.getValue();
* if (null != i && values.add(i)) {
*/ output.setValue(convert(values));
private static final long serialVersionUID = -2771410633323765889L; }
} });
removeEditor.addValueChangeListener(event -> {
final Integer i = removeInteger.getValue();
if (null != i && values.remove(i)) {
output.setValue(convert(values));
}
});
}
/** Deployment description .
*
*/
@WebServlet(urlPatterns = "/*")
@VaadinServletConfiguration(ui = HelloUi.class, productionMode = false)
public static class MyUIServlet extends VaadinServlet {
private static final long serialVersionUID = -2771410633323765889L;
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment