/* * Copyright 2000-2016 Vaadin Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package com.vaadin.v7.tests.components.grid; import java.io.Serializable; import com.vaadin.server.VaadinRequest; import com.vaadin.tests.components.AbstractReindeerTestUI; import com.vaadin.v7.data.util.BeanItemContainer; import com.vaadin.v7.ui.Grid; public class GridCheckBoxDisplay extends AbstractReindeerTestUI { private static final long serialVersionUID = -5575892909354637168L; private BeanItemContainer<Todo> todoContainer = new BeanItemContainer<>( Todo.class); @Override protected void setup(VaadinRequest request) { todoContainer.addBean(new Todo("Done task", true)); todoContainer.addBean(new Todo("Not done", false)); Grid grid = new Grid(todoContainer); grid.setSizeFull(); grid.setColumnOrder("done", "task"); grid.getColumn("done").setWidth(75); grid.getColumn("task").setExpandRatio(1); grid.setSelectionMode(Grid.SelectionMode.SINGLE); grid.setEditorEnabled(true); getLayout().addComponent(grid); getLayout().setExpandRatio(grid, 1); } @Override protected Integer getTicketNumber() { return 16976; } @Override protected String getTestDescription() { return "Verify that checkbox state is correct for all items in editor"; } public class Todo implements Serializable { private static final long serialVersionUID = -5961103142478316018L; private boolean done; private String task = ""; public Todo(String task, boolean done) { this.task = task; this.done = done; } public boolean isDone() { return done; } public void setDone(boolean done) { this.done = done; } public String getTask() { return task; } public void setTask(String task) { this.task = task; } } }