org.apache.olingo.odata2.api.edm.provider.AnnotationElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odata-v2-lib Show documentation
Show all versions of odata-v2-lib Show documentation
Repackaged OData V2 Olingo Library
/*******************************************************************************
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
******************************************************************************/
package org.apache.olingo.odata2.api.edm.provider;
import java.util.List;
/**
* Objects of this class represent an annotation element.
*
*/
public class AnnotationElement {
private String namespace;
private String prefix;
private String name;
private String text;
private List childElements;
private List attributes;
public String getNamespace() {
return namespace;
}
public String getPrefix() {
return prefix;
}
public String getName() {
return name;
}
public String getText() {
return text;
}
public List getChildElements() {
return childElements;
}
public List getAttributes() {
return attributes;
}
/**
* Sets the attributes for this {@link AnnotationElement}.
* @param attributes
* @return {@link AnnotationElement} for method chaining
*/
public AnnotationElement setAttributes(final List attributes) {
this.attributes = attributes;
return this;
}
/**
* Sets the child elements for this {@link AnnotationElement}.
* Does not set child elements and characterData for one element.
* @param childElements
* @return {@link AnnotationElement} for method chaining
*/
public AnnotationElement setChildElements(final List childElements) {
this.childElements = childElements;
return this;
}
/**
* Sets the namespace for this {@link AnnotationElement}.
* @param namespace
* @return {@link AnnotationElement} for method chaining
*/
public AnnotationElement setNamespace(final String namespace) {
this.namespace = namespace;
return this;
}
/**
* Sets the prefix for this {@link AnnotationElement}.
* @param prefix
* @return {@link AnnotationElement} for method chaining
*/
public AnnotationElement setPrefix(final String prefix) {
this.prefix = prefix;
return this;
}
/**
* Sets the name for this {@link AnnotationElement}.
* @param name
* @return {@link AnnotationElement} for method chaining
*/
public AnnotationElement setName(final String name) {
this.name = name;
return this;
}
/**
* Sets the text for this {@link AnnotationElement} which will be displayed inside the tags.
* Must NOT be set if child elements are set!
* @param text
* @return {@link AnnotationElement} for method chaining
*/
public AnnotationElement setText(final String text) {
this.text = text;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy