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

org.apache.xmlbeans.impl.jam.mutable.MAnnotatedElement Maven / Gradle / Ivy

There is a newer version: 3.0.61
Show newest version
package org.apache.xmlbeans.impl.jam.mutable;

import org.apache.xmlbeans.impl.jam.JAnnotatedElement;


/**
 * 

Mutable version of JAnnotatedElement.

* * @author Patrick Calahan <email: pcal-at-bea-dot-com> */ public interface MAnnotatedElement extends MElement, JAnnotatedElement { /** * Returns the annotation having the given name, creating it if it doesn't * exist. */ public MAnnotation findOrCreateAnnotation(String annotationName); public MAnnotation[] getMutableAnnotations(); //DOCME public MAnnotation getMutableAnnotation(String named); //DOCME public MAnnotation addLiteralAnnotation(String annotationName); // public MAnnotation[] getLiteralMutableAnnotations(); // public MAnnotation[] getLiteralMutableAnnotations(String named); //DOCME public MComment getMutableComment(); //DOCME public MComment createComment(); //DOCME public void removeComment(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy