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

com.codbex.kronos.parser.hdbcalculationview.ndb.bimodeldatafoundation.FeaturedAttributeReference 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.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * An featured attribute reference is a reference to an existing attribute	including additional features like
 * alias, descriptions or the	possibility to	hide the attribute.	The feature attribueName is the
 * pointer to the original attribute.
 *
 *
 * Java class for FeaturedAttributeReference complex type.
 *
 * The following schema fragment specifies the expected content contained within this class.
 *
 * 
 * <complexType name="FeaturedAttributeReference">
 *   <complexContent>
 *     <extension base="{http://www.sap.com/ndb/BiModelDataFoundation.ecore}AliasWithDescription">
 *       <attribute name="attributeName" use="required" type="{http://www.sap.com/ndb/RepositoryModelResource.ecore}AlphanumericName" />
 *       <attribute name="hidden" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="transparentFilter" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="keepFlag" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FeaturedAttributeReference") public class FeaturedAttributeReference extends AliasWithDescription { /** The attribute name. */ @XmlAttribute(name = "attributeName", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String attributeName; /** The hidden. */ @XmlAttribute(name = "hidden") protected Boolean hidden; /** The transparent filter. */ @XmlAttribute(name = "transparentFilter") protected Boolean transparentFilter; /** The keep flag. */ @XmlAttribute(name = "keepFlag") protected Boolean keepFlag; /** * Gets the value of the attributeName property. * * @return possible object is * {@link String } */ public String getAttributeName() { return attributeName; } /** * Sets the value of the attributeName property. * * @param value allowed object is * {@link String } */ public void setAttributeName(String value) { this.attributeName = value; } /** * Gets the value of the hidden property. * * @return possible object is * {@link Boolean } */ public Boolean isHidden() { return hidden; } /** * Sets the value of the hidden property. * * @param value allowed object is * {@link Boolean } */ public void setHidden(Boolean value) { this.hidden = value; } /** * Gets the value of the transparentFilter property. * * @return possible object is * {@link Boolean } */ public Boolean isTransparentFilter() { return transparentFilter; } /** * Sets the value of the transparentFilter property. * * @param value allowed object is * {@link Boolean } */ public void setTransparentFilter(Boolean value) { this.transparentFilter = value; } /** * Gets the value of the keepFlag property. * * @return possible object is * {@link Boolean } */ public Boolean isKeepFlag() { return keepFlag; } /** * Sets the value of the keepFlag property. * * @param value allowed object is * {@link Boolean } */ public void setKeepFlag(Boolean value) { this.keepFlag = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy