blob: 00dfab71a4e9bc70882d82671e18736008d4bb94 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 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.ui.template.formfield.replace.levels;
import javax.annotation.Generated;
import org.eclipse.scout.commons.annotations.Replace;
/**
* <b>NOTE:</b><br>
* This class is auto generated by the Scout SDK. No manual modifications recommended.
*
* @generated
*/
@Generated(value = "org.eclipse.scout.sdk.workspace.dto.formdata.FormDataDtoUpdateOperation", comments = "This class is auto generated by the Scout SDK. No manual modifications recommended.")
public class ThirdLevelFormData extends SecondLevelFormData {
private static final long serialVersionUID = 1L;
public ThirdLevelFormData() {
}
public ThirdInnerBox getThirdInnerBox() {
return getFieldByClass(ThirdInnerBox.class);
}
@Replace
public static class ThirdInnerBox extends SecondInnerBox {
private static final long serialVersionUID = 1L;
public ThirdInnerBox() {
}
public ThirdLevel getThirdLevel() {
return getFieldByClass(ThirdLevel.class);
}
@Replace
public static class ThirdLevel extends SecondLevel {
private static final long serialVersionUID = 1L;
public ThirdLevel() {
}
}
}
}