All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.codbex.kronos.parser.hdbcalculationview.ndb.bimodeldatafoundation.Shape Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2022 codbex or an codbex affiliate company and contributors
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v2.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v20.html
 *
 * SPDX-FileCopyrightText: 2022 codbex or an codbex affiliate company and contributors
 * SPDX-License-Identifier: EPL-2.0
 */
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2020.11.26 at 10:54:28 AM EET 
//


package com.codbex.kronos.parser.hdbcalculationview.ndb.bimodeldatafoundation;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * Java class for Shape complex type.
 *
 * The following schema fragment specifies the expected content contained within this class.
 *
 * 
 * <complexType name="Shape">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="upperLeftCorner" type="{http://www.sap.com/ndb/BiModelDataFoundation.ecore}Coordinates" minOccurs="0"/>
 *         <element name="rectangleSize" type="{http://www.sap.com/ndb/BiModelDataFoundation.ecore}RectangleSize" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="modelObjectType" type="{http://www.sap.com/ndb/BiModelDataFoundation.ecore}ModelObjectType" />
 *       <attribute name="modelObjectNameSpace" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="expanded" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="physicalModelObjectNameSpace" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="modelObjectName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="visibleInDetailPane" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Shape", propOrder = { "upperLeftCorner", "rectangleSize" }) @XmlSeeAlso({ RectangularShape.class }) public class Shape { /** The upper left corner. */ protected Coordinates upperLeftCorner; /** The rectangle size. */ protected RectangleSize rectangleSize; /** The model object type. */ @XmlAttribute(name = "modelObjectType") protected ModelObjectType modelObjectType; /** The model object name space. */ @XmlAttribute(name = "modelObjectNameSpace") protected String modelObjectNameSpace; /** The expanded. */ @XmlAttribute(name = "expanded") protected Boolean expanded; /** The physical model object name space. */ @XmlAttribute(name = "physicalModelObjectNameSpace") protected String physicalModelObjectNameSpace; /** The model object name. */ @XmlAttribute(name = "modelObjectName", required = true) protected String modelObjectName; /** The visible in detail pane. */ @XmlAttribute(name = "visibleInDetailPane") protected Boolean visibleInDetailPane; /** * Gets the value of the upperLeftCorner property. * * @return possible object is * {@link Coordinates } */ public Coordinates getUpperLeftCorner() { return upperLeftCorner; } /** * Sets the value of the upperLeftCorner property. * * @param value allowed object is * {@link Coordinates } */ public void setUpperLeftCorner(Coordinates value) { this.upperLeftCorner = value; } /** * Gets the value of the rectangleSize property. * * @return possible object is * {@link RectangleSize } */ public RectangleSize getRectangleSize() { return rectangleSize; } /** * Sets the value of the rectangleSize property. * * @param value allowed object is * {@link RectangleSize } */ public void setRectangleSize(RectangleSize value) { this.rectangleSize = value; } /** * Gets the value of the modelObjectType property. * * @return possible object is * {@link ModelObjectType } */ public ModelObjectType getModelObjectType() { return modelObjectType; } /** * Sets the value of the modelObjectType property. * * @param value allowed object is * {@link ModelObjectType } */ public void setModelObjectType(ModelObjectType value) { this.modelObjectType = value; } /** * Gets the value of the modelObjectNameSpace property. * * @return possible object is * {@link String } */ public String getModelObjectNameSpace() { return modelObjectNameSpace; } /** * Sets the value of the modelObjectNameSpace property. * * @param value allowed object is * {@link String } */ public void setModelObjectNameSpace(String value) { this.modelObjectNameSpace = value; } /** * Gets the value of the expanded property. * * @return possible object is * {@link Boolean } */ public Boolean isExpanded() { return expanded; } /** * Sets the value of the expanded property. * * @param value allowed object is * {@link Boolean } */ public void setExpanded(Boolean value) { this.expanded = value; } /** * Gets the value of the physicalModelObjectNameSpace property. * * @return possible object is * {@link String } */ public String getPhysicalModelObjectNameSpace() { return physicalModelObjectNameSpace; } /** * Sets the value of the physicalModelObjectNameSpace property. * * @param value allowed object is * {@link String } */ public void setPhysicalModelObjectNameSpace(String value) { this.physicalModelObjectNameSpace = value; } /** * Gets the value of the modelObjectName property. * * @return possible object is * {@link String } */ public String getModelObjectName() { return modelObjectName; } /** * Sets the value of the modelObjectName property. * * @param value allowed object is * {@link String } */ public void setModelObjectName(String value) { this.modelObjectName = value; } /** * Gets the value of the visibleInDetailPane property. * * @return possible object is * {@link Boolean } */ public Boolean isVisibleInDetailPane() { return visibleInDetailPane; } /** * Sets the value of the visibleInDetailPane property. * * @param value allowed object is * {@link Boolean } */ public void setVisibleInDetailPane(Boolean value) { this.visibleInDetailPane = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy