/* * 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.tests.widgetset.client; import java.util.Date; import java.util.List; import java.util.Map; import java.util.Set; import com.vaadin.shared.Connector; import com.vaadin.shared.communication.SharedState; import com.vaadin.shared.ui.ContentMode; import elemental.json.JsonBoolean; import elemental.json.JsonValue; public class SerializerTestState extends SharedState { public boolean booleanValue; public Boolean booleanObjectValue; public boolean[] booleanArray; public byte byteValue; public Byte byteObjectValue; public byte[] byteArray; public char charValue; public Character charObjectValue; public char[] charArray; public int intValue; public Integer intObjectValue; public int[] intArray; public long longValue; public Long longObjectValue; public long[] longArray; public float floatValue; public Float floatObjectValue; public float[] floatArray; public double doubleValue; public Double doubleObjectValue; public double[] doubleArray; public String string; public String[] stringArray; public String nullString; public Connector connector; public ComplexTestBean complexTestBean; public SimpleTestBean simpleTestBean; public SimpleTestBean[] simpleTestBeanArray; public int[][] nestedIntArray; public SimpleTestBean[][] nestedBeanArray; public List intList; public List connectorList; public List simpleTestBeanList; public List primitiveArrayList; public List objectArrayList; public List beanArrayList; public List[] objectListArray; public List[] beanListArray; public Set intSet; public Set connectorSet; public Set beanSet; public Map stringMap; public Map connectorMap; public Map intMap; public Map beanMap; public Map, Map>> generics; public ContentMode contentMode; public ContentMode[] array; public List list; public SimpleTestBean bean; public Date date1; public Date date2; public Date[] dateArray; public BeanWithAbstractSuperclass beanWithAbstractSuperclass; public JsonValue jsonNull = null; public JsonValue jsonString = null; public JsonBoolean jsonBoolean = null; }