com.codbex.kronos.parser.hdbcalculationview.ndb.datamodelhierarchy.LeveledHierarchy 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.datamodelhierarchy;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.codbex.kronos.parser.hdbcalculationview.ndb.basemodelbase.NodeStyle;
/**
* A Leveled Hierarchy is defined through a list of levels. Each level is the combination of a Level-Number and a reference
* to an Element of the Entity. An example of a leveled hierarchy is time: days, months and years
*
*
* Java class for LeveledHierarchy complex type.
*
* The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LeveledHierarchy">
* <complexContent>
* <extension base="{http://www.sap.com/ndb/DataModelHierarchy.ecore}InlineHierarchy">
* <sequence>
* <element name="level" type="{http://www.sap.com/ndb/DataModelHierarchy.ecore}Level" maxOccurs="unbounded"/>
* </sequence>
* <attribute name="nodeStyle" type="{http://www.sap.com/ndb/BaseModelBase.ecore}NodeStyle" />
* <attribute name="stepParentNodeID" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LeveledHierarchy", propOrder = {
"level"
})
public class LeveledHierarchy
extends InlineHierarchy {
/** The level. */
@XmlElement(required = true)
protected List level;
/** The node style. */
@XmlAttribute(name = "nodeStyle")
protected NodeStyle nodeStyle;
/** The step parent node ID. */
@XmlAttribute(name = "stepParentNodeID")
protected String stepParentNodeID;
/**
* Gets the value of the level property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the level property.
*
*
* For example, to add a new item, do as follows:
*
* getLevel().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Level }
*
* @return the level
*/
public List getLevel() {
if (level == null) {
level = new ArrayList();
}
return this.level;
}
/**
* Gets the value of the nodeStyle property.
*
* @return possible object is
* {@link NodeStyle }
*/
public NodeStyle getNodeStyle() {
return nodeStyle;
}
/**
* Sets the value of the nodeStyle property.
*
* @param value allowed object is
* {@link NodeStyle }
*/
public void setNodeStyle(NodeStyle value) {
this.nodeStyle = value;
}
/**
* Gets the value of the stepParentNodeID property.
*
* @return possible object is
* {@link String }
*/
public String getStepParentNodeID() {
return stepParentNodeID;
}
/**
* Sets the value of the stepParentNodeID property.
*
* @param value allowed object is
* {@link String }
*/
public void setStepParentNodeID(String value) {
this.stepParentNodeID = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy