aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoffeys <none@none>2014-01-16 23:52:44 +0000
committercoffeys <none@none>2014-01-16 23:52:44 +0000
commit0e177fc42252ad1efc08a754c33c6c717eab6134 (patch)
treee2eb8232b46083a1c15bac4c888ad76c584a8264
parent51d34d8a68bc5cab82d2aaf9f084e92af69bea13 (diff)
parent87f1dc8fe81754f087fe4c40428fbb213a0d7de3 (diff)
Merge
-rw-r--r--src/share/classes/com/sun/javadoc/ClassDoc.java8
-rw-r--r--src/share/classes/com/sun/tools/doclets/formats/html/ClassWriterImpl.java16
-rw-r--r--src/share/classes/com/sun/tools/javadoc/ClassDocImpl.java4
-rw-r--r--src/share/classes/com/sun/tools/javadoc/RootDocImpl.java5
-rw-r--r--test/com/sun/javadoc/testLambdaFeature/TestLambdaFeature.java7
-rw-r--r--test/com/sun/javadoc/testLambdaFeature/pkg/A.java3
-rw-r--r--test/com/sun/javadoc/testLambdaFeature/pkg1/FuncInf.java1
-rw-r--r--test/com/sun/javadoc/testLambdaFeature/pkg1/NotAFuncInf.java29
8 files changed, 59 insertions, 14 deletions
diff --git a/src/share/classes/com/sun/javadoc/ClassDoc.java b/src/share/classes/com/sun/javadoc/ClassDoc.java
index bf05b418..11631b79 100644
--- a/src/share/classes/com/sun/javadoc/ClassDoc.java
+++ b/src/share/classes/com/sun/javadoc/ClassDoc.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1998, 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
@@ -66,12 +66,6 @@ public interface ClassDoc extends ProgramElementDoc, Type {
boolean isExternalizable();
/**
- * Return true if this class can be used as a target type of a lambda expression
- * or method reference.
- */
- boolean isFunctionalInterface();
-
- /**
* Return the serialization methods for this class or
* interface.
*
diff --git a/src/share/classes/com/sun/tools/doclets/formats/html/ClassWriterImpl.java b/src/share/classes/com/sun/tools/doclets/formats/html/ClassWriterImpl.java
index 92b7224d..59fe21d7 100644
--- a/src/share/classes/com/sun/tools/doclets/formats/html/ClassWriterImpl.java
+++ b/src/share/classes/com/sun/tools/doclets/formats/html/ClassWriterImpl.java
@@ -29,6 +29,7 @@ import java.util.*;
import com.sun.javadoc.*;
import com.sun.tools.javac.jvm.Profile;
+import com.sun.tools.javadoc.RootDocImpl;
import com.sun.tools.doclets.formats.html.markup.*;
import com.sun.tools.doclets.internal.toolkit.*;
import com.sun.tools.doclets.internal.toolkit.builders.*;
@@ -529,7 +530,7 @@ public class ClassWriterImpl extends SubWriterHolderWriter
* {@inheritDoc}
*/
public void addFunctionalInterfaceInfo (Content classInfoTree) {
- if (classDoc.isFunctionalInterface()) {
+ if (isFunctionalInterface()) {
Content dt = HtmlTree.DT(getResource("doclet.Functional_Interface"));
Content dl = HtmlTree.DL(dt);
Content dd = new HtmlTree(HtmlTag.DD);
@@ -539,6 +540,19 @@ public class ClassWriterImpl extends SubWriterHolderWriter
}
}
+ public boolean isFunctionalInterface() {
+ if (configuration.root instanceof RootDocImpl) {
+ RootDocImpl root = (RootDocImpl) configuration.root;
+ AnnotationDesc[] annotationDescList = classDoc.annotations();
+ for (AnnotationDesc annoDesc : annotationDescList) {
+ if (root.isFunctionalInterface(annoDesc)) {
+ return true;
+ }
+ }
+ }
+ return false;
+ }
+
/**
* {@inheritDoc}
*/
diff --git a/src/share/classes/com/sun/tools/javadoc/ClassDocImpl.java b/src/share/classes/com/sun/tools/javadoc/ClassDocImpl.java
index 9ea169d0..ae0cbd2d 100644
--- a/src/share/classes/com/sun/tools/javadoc/ClassDocImpl.java
+++ b/src/share/classes/com/sun/tools/javadoc/ClassDocImpl.java
@@ -288,10 +288,6 @@ public class ClassDocImpl extends ProgramElementDocImpl implements ClassDoc {
return false;
}
- public boolean isFunctionalInterface() {
- return env.types.isFunctionalInterface(tsym) && env.source.allowLambda();
- }
-
/**
* Return the package that this class is contained in.
*/
diff --git a/src/share/classes/com/sun/tools/javadoc/RootDocImpl.java b/src/share/classes/com/sun/tools/javadoc/RootDocImpl.java
index 5d02145a..678557bb 100644
--- a/src/share/classes/com/sun/tools/javadoc/RootDocImpl.java
+++ b/src/share/classes/com/sun/tools/javadoc/RootDocImpl.java
@@ -381,6 +381,11 @@ public class RootDocImpl extends DocImpl implements RootDoc {
env.initDoclint(opts, customTagNames);
}
+ public boolean isFunctionalInterface(AnnotationDesc annotationDesc) {
+ return annotationDesc.annotationType().qualifiedName().equals(
+ env.syms.functionalInterfaceType.toString()) && env.source.allowLambda();
+ }
+
public boolean showTagMessages() {
return env.showTagMessages();
}
diff --git a/test/com/sun/javadoc/testLambdaFeature/TestLambdaFeature.java b/test/com/sun/javadoc/testLambdaFeature/TestLambdaFeature.java
index 151549b5..5d8c3334 100644
--- a/test/com/sun/javadoc/testLambdaFeature/TestLambdaFeature.java
+++ b/test/com/sun/javadoc/testLambdaFeature/TestLambdaFeature.java
@@ -23,7 +23,7 @@
/*
* @test
- * @bug 8004893 8022738
+ * @bug 8004893 8022738 8029143
* @summary Make sure that the lambda feature changes work fine in
* javadoc.
* @author bpatel
@@ -81,6 +81,11 @@ public class TestLambdaFeature extends JavadocTester {
"<pre>default&nbsp;default&nbsp;void&nbsp;defaultMethod()</pre>"},
{BUG_ID + FS + "pkg" + FS + "B.html",
"<td class=\"colFirst\"><code>default void</code></td>"},
+ {BUG_ID + FS + "pkg1" + FS + "NotAFuncInf.html",
+ "<dl>" + NL + "<dt>Functional Interface:</dt>" + NL +
+ "<dd>This is a functional interface and can therefore be used as " +
+ "the assignment target for a lambda expression or method " +
+ "reference.</dd>" + NL + "</dl>"},
{BUG_ID + FS + "pkg" + FS + "B.html",
"<dl>" + NL + "<dt>Functional Interface:</dt>"}
};
diff --git a/test/com/sun/javadoc/testLambdaFeature/pkg/A.java b/test/com/sun/javadoc/testLambdaFeature/pkg/A.java
index c52f249b..1ef8ac5b 100644
--- a/test/com/sun/javadoc/testLambdaFeature/pkg/A.java
+++ b/test/com/sun/javadoc/testLambdaFeature/pkg/A.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 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
@@ -23,6 +23,7 @@
package pkg;
+@FunctionalInterface
public interface A {
public void method1();
diff --git a/test/com/sun/javadoc/testLambdaFeature/pkg1/FuncInf.java b/test/com/sun/javadoc/testLambdaFeature/pkg1/FuncInf.java
index 566acf59..bace6ea9 100644
--- a/test/com/sun/javadoc/testLambdaFeature/pkg1/FuncInf.java
+++ b/test/com/sun/javadoc/testLambdaFeature/pkg1/FuncInf.java
@@ -23,6 +23,7 @@
package pkg1;
+@FunctionalInterface
public interface FuncInf<V> {
V call() throws Exception;
diff --git a/test/com/sun/javadoc/testLambdaFeature/pkg1/NotAFuncInf.java b/test/com/sun/javadoc/testLambdaFeature/pkg1/NotAFuncInf.java
new file mode 100644
index 00000000..6c366869
--- /dev/null
+++ b/test/com/sun/javadoc/testLambdaFeature/pkg1/NotAFuncInf.java
@@ -0,0 +1,29 @@
+/*
+ * Copyright (c) 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
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+package pkg1;
+
+public interface NotAFuncInf<V> {
+
+ V call() throws Exception;
+}