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

org.odata4j.edm.EdmAnnotationElement Maven / Gradle / Ivy

The newest version!
package org.odata4j.edm;

/**
 * A CSDL Annotation element.
 *
 * 

Annotation elements in conceptual schema definition language (CSDL) are custom XML elements * in the conceptual model. Annotation elements can be used to provide extra metadata about * the elements in a conceptual model. * * @see [msdn] Annotation Elements (CSDL) */ public class EdmAnnotationElement extends EdmAnnotation { public EdmAnnotationElement(String namespaceUri, String namespacePrefix, String name, Class valueType, T value) { super(namespaceUri, namespacePrefix, name, valueType, value); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy