OpenJDK / lambda / lambda / jaxws
changeset 398:5773e3fc8380 jdk8-b84
Merge
author | lana |
---|---|
date | Mon, 01 Apr 2013 21:35:19 -0700 |
parents | 54c29eb352e7 2476e1f2afa5 |
children | 426d26eefd7a 8c0b6bccfe47 |
files | |
diffstat | 1 files changed, 18 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/share/jaxws_classes/com/sun/tools/internal/jxc/model/nav/ApNavigator.java Thu Mar 28 10:54:47 2013 -0700 +++ b/src/share/jaxws_classes/com/sun/tools/internal/jxc/model/nav/ApNavigator.java Mon Apr 01 21:35:19 2013 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -31,7 +31,9 @@ import com.sun.xml.internal.bind.v2.model.nav.Navigator; import com.sun.xml.internal.bind.v2.runtime.Location; +import java.lang.annotation.Annotation; import javax.annotation.processing.ProcessingEnvironment; +import javax.lang.model.element.AnnotationMirror; import javax.lang.model.element.Element; import javax.lang.model.element.ElementKind; import javax.lang.model.element.ExecutableElement; @@ -372,6 +374,21 @@ public TypeKind getKind() { throw new IllegalStateException(); } + + @Override + public List<? extends AnnotationMirror> getAnnotationMirrors() { + throw new IllegalStateException(); + } + + @Override + public <A extends Annotation> A getAnnotation(Class<A> annotationType) { + throw new IllegalStateException(); + } + + @Override + public <A extends Annotation> A[] getAnnotationsByType(Class<A> annotationType) { + throw new IllegalStateException(); + } }; public Location getClassLocation(TypeElement typeElement) {