Class DecoratedRoundEnvironment
- java.lang.Object
-
- com.webcohesion.enunciate.javac.decorations.DecoratedRoundEnvironment
-
- All Implemented Interfaces:
RoundEnvironment
public class DecoratedRoundEnvironment extends Object implements RoundEnvironment
- Author:
- Ryan Heaton
-
-
Constructor Summary
Constructors Constructor Description DecoratedRoundEnvironment(RoundEnvironment delegate, DecoratedProcessingEnvironment env)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanerrorRaised()Set<? extends Element>getElementsAnnotatedWith(Class<? extends Annotation> a)Set<? extends Element>getElementsAnnotatedWith(TypeElement a)Set<? extends Element>getRootElements()booleanprocessingOver()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface javax.annotation.processing.RoundEnvironment
getElementsAnnotatedWithAny, getElementsAnnotatedWithAny
-
-
-
-
Constructor Detail
-
DecoratedRoundEnvironment
public DecoratedRoundEnvironment(RoundEnvironment delegate, DecoratedProcessingEnvironment env)
-
-
Method Detail
-
processingOver
public boolean processingOver()
- Specified by:
processingOverin interfaceRoundEnvironment
-
errorRaised
public boolean errorRaised()
- Specified by:
errorRaisedin interfaceRoundEnvironment
-
getRootElements
public Set<? extends Element> getRootElements()
- Specified by:
getRootElementsin interfaceRoundEnvironment
-
getElementsAnnotatedWith
public Set<? extends Element> getElementsAnnotatedWith(TypeElement a)
- Specified by:
getElementsAnnotatedWithin interfaceRoundEnvironment
-
getElementsAnnotatedWith
public Set<? extends Element> getElementsAnnotatedWith(Class<? extends Annotation> a)
- Specified by:
getElementsAnnotatedWithin interfaceRoundEnvironment
-
-