blob: cbb114874883f6e77ac862c29ba9070c3c0fc2ac [file] [log] [blame]
/*
* Copyright (c) 2010-2020 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
*/
import org.eclipse.scout.rt.client.ui.form.AbstractForm;
import org.eclipse.scout.rt.client.ui.form.fields.groupbox.AbstractGroupBox;
import org.eclipse.scout.rt.platform.Order;
import org.eclipse.scout.rt.platform.classid.ClassId;
@SuppressWarnings("ALL")
@ClassId("49409d96-e2fe-4b9e-8fde-67d1a4e5b135")
public class TestForm extends AbstractForm {
public MainBox getMainBox() {
return getFieldByClass(MainBox.class);
}
@Order(1000)
@ClassId("c803d2d9-e45d-4126-ad29-a2d831fcfb54")
public class MainBox extends AbstractGroupBox {
<caret>
}
}