blob: 86e91076b424be83bd611164c5fb5b051ded10cf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 BSI Business Systems Integration AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* BSI Business Systems Integration AG - initial API and implementation
******************************************************************************/
package formdata.shared.services.process;
import javax.annotation.Generated;
import org.eclipse.scout.rt.shared.data.form.AbstractFormData;
import org.eclipse.scout.rt.shared.data.form.fields.AbstractValueFieldData;
/**
* <b>NOTE:</b><br>
* This class is auto generated by the Scout SDK. No manual modifications recommended.
*/
@Generated(value = "formdata.client.ui.forms.FormWithGroupBoxesForm", comments = "This class is auto generated by the Scout SDK. No manual modifications recommended.")
public class FormWithGroupBoxesFormData extends AbstractFormData {
private static final long serialVersionUID = 1L;
public FlatString getFlatString() {
return getFieldByClass(FlatString.class);
}
public InnerInteger getInnerInteger() {
return getFieldByClass(InnerInteger.class);
}
public static class FlatString extends AbstractValueFieldData<String> {
private static final long serialVersionUID = 1L;
}
public static class InnerInteger extends AbstractValueFieldData<Integer> {
private static final long serialVersionUID = 1L;
}
}