ca.qc.ircm.platelayout.client.PlateLayoutState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plate-layout Show documentation
Show all versions of plate-layout Show documentation
Layout for micro well plates used in laboratories
/*
* Copyright (c) 2016 Institut de recherches cliniques de Montreal (IRCM)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package ca.qc.ircm.platelayout.client;
import com.vaadin.shared.Connector;
import com.vaadin.shared.ui.AbstractComponentContainerState;
import java.io.Serializable;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Plate layout state.
*/
public class PlateLayoutState extends AbstractComponentContainerState {
private static final long serialVersionUID = -1122609654126841136L;
public int columns;
public int rows;
public Map wellData = new HashMap<>();
public static class WellData implements Serializable {
private static final long serialVersionUID = -1900301599932252390L;
public int column;
public int row;
public List styles = null;
}
}