com.codbex.kronos.parser.hdbcalculationview.ndb.basemodelbase.Descriptions 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.basemodelbase;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Descriptions complex type.
*
* The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Descriptions">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="comment" type="{http://www.sap.com/ndb/BaseModelBase.ecore}CommentProperties" minOccurs="0"/>
* </sequence>
* <attribute name="defaultDescription" type="{http://www.sap.com/ndb/BaseModelBase.ecore}Description" default=" " />
* <attribute name="textType" type="{http://www.sap.com/ndb/BaseModelBase.ecore}TextType" />
* <attribute name="maxLength" type="{http://www.w3.org/2001/XMLSchema}int" />
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Descriptions", propOrder = {
"comment"
})
public class Descriptions {
/** The comment. */
protected CommentProperties comment;
/** The default description. */
@XmlAttribute(name = "defaultDescription")
protected String defaultDescription;
/** The text type. */
@XmlAttribute(name = "textType")
protected TextType textType;
/** The max length. */
@XmlAttribute(name = "maxLength")
protected Integer maxLength;
/**
* Gets the value of the comment property.
*
* @return possible object is
* {@link CommentProperties }
*/
public CommentProperties getComment() {
return comment;
}
/**
* Sets the value of the comment property.
*
* @param value allowed object is
* {@link CommentProperties }
*/
public void setComment(CommentProperties value) {
this.comment = value;
}
/**
* Gets the value of the defaultDescription property.
*
* @return possible object is
* {@link String }
*/
public String getDefaultDescription() {
if (defaultDescription == null) {
return " ";
} else {
return defaultDescription;
}
}
/**
* Sets the value of the defaultDescription property.
*
* @param value allowed object is
* {@link String }
*/
public void setDefaultDescription(String value) {
this.defaultDescription = value;
}
/**
* Gets the value of the textType property.
*
* @return possible object is
* {@link TextType }
*/
public TextType getTextType() {
return textType;
}
/**
* Sets the value of the textType property.
*
* @param value allowed object is
* {@link TextType }
*/
public void setTextType(TextType value) {
this.textType = value;
}
/**
* Gets the value of the maxLength property.
*
* @return possible object is
* {@link Integer }
*/
public Integer getMaxLength() {
return maxLength;
}
/**
* Sets the value of the maxLength property.
*
* @param value allowed object is
* {@link Integer }
*/
public void setMaxLength(Integer value) {
this.maxLength = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy