blob: 808ad572fe62b01648e5a7d9e7d9afe699cc2d29 [file] [log] [blame]
// *****************************************************************************
// Copyright (c) 2018 Agence spatiale canadienne / Canadian Space Agency
// 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:
// Pierre Allard - initial API and implementation
//
// SPDX-License-Identifier: EPL-1.0
// *****************************************************************************
@GenModel(prefix="ApogyEarthAtmosphereEnvironmentUI",
childCreationExtenders="true",
extensibleProviderFactory="true",
multipleEditorPages="false",
copyrightText="*******************************************************************************
Copyright (c) 2018 Agence spatiale canadienne / Canadian Space Agency
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:
Pierre Allard - initial API and implementation
SPDX-License-Identifier: EPL-1.0
*******************************************************************************",
modelName="ApogyEarthAtmosphereEnvironmentUI",
complianceLevel="8.0",
suppressGenModelAnnotations="false",
dynamicTemplates="true",
templateDirectory="platform:/plugin/org.eclipse.apogy.common.emf.codegen/templates")
@GenModel(modelDirectory="/org.eclipse.apogy.core.environment.earth.atmosphere.ui/src-gen")
@GenModel(editDirectory= "/org.eclipse.apogy.core.environment.earth.atmosphere.ui.edit/src-gen")
//@GenModel(testsDirectory="/org.eclipse.apogy.core.environment.earth.atmosphere.ui.tests/src-gen")
package org.eclipse.apogy.core.environment.earth.atmosphere.ui
import org.eclipse.apogy.common.topology.ui.NodePresentation
import org.eclipse.apogy.common.emf.ui.NamedDescribedWizardPagesProvider
import org.eclipse.apogy.common.Apogy
@Apogy(hasCustomClass="true")
class EarthAtmosphereWorksitePresentation extends NodePresentation
{
@GenModel(propertyCategory="AXIS")
boolean axisVisible = "true"
@GenModel(propertyCategory="AXIS")
@Apogy(units="m")
double axisLength = "10.0"
@GenModel(propertyCategory="SKY")
boolean azimuthVisible = "true"
@GenModel(propertyCategory="SKY")
boolean elevationLinesVisible = "true"
@GenModel(propertyCategory="SKY")
boolean azimuthLinesVisible = "true"
@GenModel(propertyCategory="PLANE")
boolean planeVisible = "true"
@GenModel(propertyCategory="PLANE")
@Apogy(units="m")
double planeGridSize = "1.0"
@GenModel(propertyCategory="PLANE")
@Apogy(units="m")
double planeSize = "10.0"
}
@Apogy(hasCustomClass="true")
class EarthAtmosphereWorksiteWizardPagesProvider extends NamedDescribedWizardPagesProvider
{
}