< prev index next >

langtools/test/tools/javac/annotations/typeAnnotations/referenceinfos/ConstructorInvocationTypeArgument.java

Print this page




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8042451
  27  * @summary Test population of reference info for constructor invocation type argument
  28  * @modules jdk.compiler/com.sun.tools.classfile
  29  * @compile -g Driver.java ReferenceInfoUtil.java ConstructorInvocationTypeArgument.java
  30  * @run main Driver ConstructorInvocationTypeArgument
  31  */
  32 
  33 import static com.sun.tools.classfile.TypeAnnotation.TargetType.CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT;
  34 
  35 public class ConstructorInvocationTypeArgument {
  36 
  37     @TADescription(annotation = "TA", type = CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT,
  38             typeIndex = 0, offset = 4)
  39     @TADescription(annotation = "TB", type = CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT,
  40             typeIndex = 0, offset = 0)
  41     public String generic1() {
  42         return "class %TEST_CLASS_NAME% { <T> %TEST_CLASS_NAME%(int i) { new <@TA T>%TEST_CLASS_NAME%(); }" +
  43                 " <T> %TEST_CLASS_NAME%() { <@TB String>this(0); } }";
  44     }
  45 
  46     @TADescription(annotation = "TA", type = CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT,
  47             typeIndex = 0, offset = 0)
  48     public String generic2() {


   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8042451
  27  * @summary Test population of reference info for constructor invocation type argument
  28  * @modules jdk.jdeps/com.sun.tools.classfile
  29  * @compile -g Driver.java ReferenceInfoUtil.java ConstructorInvocationTypeArgument.java
  30  * @run main Driver ConstructorInvocationTypeArgument
  31  */
  32 
  33 import static com.sun.tools.classfile.TypeAnnotation.TargetType.CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT;
  34 
  35 public class ConstructorInvocationTypeArgument {
  36 
  37     @TADescription(annotation = "TA", type = CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT,
  38             typeIndex = 0, offset = 4)
  39     @TADescription(annotation = "TB", type = CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT,
  40             typeIndex = 0, offset = 0)
  41     public String generic1() {
  42         return "class %TEST_CLASS_NAME% { <T> %TEST_CLASS_NAME%(int i) { new <@TA T>%TEST_CLASS_NAME%(); }" +
  43                 " <T> %TEST_CLASS_NAME%() { <@TB String>this(0); } }";
  44     }
  45 
  46     @TADescription(annotation = "TA", type = CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT,
  47             typeIndex = 0, offset = 0)
  48     public String generic2() {
< prev index next >