<mvc:View controllerName="sap.apf.modeler.ui.controller.editApplication"
	xmlns:mvc="sap.ui.core.mvc" xmlns="sap.m">
	<Dialog xmlns="sap.m" id="idEditAppDialog" showHeader="true"
		class="sapUiSizeCompact dialogContentPadding">
		<VBox>
			<items>
				<HBox class="newAppLayout">
					<items>
						<Label id="idDescriptionLabel" required="true"
							width="110px" labelFor="idDescriptionInput" />
						<Input id="idDescriptionInput" liveChange="handleAppDescriptionLiveChange"
							 initialFocus="true" ariaLabelledBy="idDescriptionLabel" />
					</items>
				</HBox>
				<HBox class="newAppLayout" id="idSemanticObjectBox">
					<items>
						<Label id="idSemanticObjectLabel" width="110px" />
						<Input id="idSemanticObjectInput" liveChange="handleSemanticObjectLiveChange"
							ariaLabelledBy="idSemanticObjectLabel" />
					</items>
				</HBox>
			</items>
		</VBox>
		<buttons>
			<Button id="idSaveButton" enabled="false" press="handleSavePress" />
			<Button id="idCancelButton" press="handleCancelPress" />
		</buttons>
	</Dialog>
</mvc:View>