mirror of
https://github.com/berkeleydb/je.git
synced 2024-11-15 01:46:24 +00:00
31 lines
846 B
Java
31 lines
846 B
Java
|
/*-
|
||
|
* See the file LICENSE for redistribution information.
|
||
|
*
|
||
|
* Copyright (c) 2002, 2016 Oracle and/or its affiliates. All rights reserved.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
import com.sun.javadoc.AnnotationTypeElementDoc;
|
||
|
import com.sun.javadoc.AnnotationValue;
|
||
|
|
||
|
class HidingAnnotationTypeElementDocWrapper extends HidingMethodDocWrapper
|
||
|
implements AnnotationTypeElementDoc {
|
||
|
|
||
|
public HidingAnnotationTypeElementDocWrapper(
|
||
|
AnnotationTypeElementDoc memdoc, Map mapWrappers) {
|
||
|
super(memdoc, mapWrappers);
|
||
|
}
|
||
|
|
||
|
private AnnotationTypeElementDoc _getAnnotationTypeElementDoc() {
|
||
|
return (AnnotationTypeElementDoc)getWrappedObject();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public AnnotationValue defaultValue() {
|
||
|
return (AnnotationValue)
|
||
|
wrapOrHide(_getAnnotationTypeElementDoc().defaultValue());
|
||
|
}
|
||
|
}
|