8007329: minor issues in impl class hierarchry for DCTree.* classes
authorjjg
Thu, 31 Jan 2013 19:19:40 -0800
changeset 15558 151d7379ae16
parent 15557 3e211bbf4094
child 15559 4e397baa6e3d
8007329: minor issues in impl class hierarchry for DCTree.* classes Reviewed-by: darcy
langtools/src/share/classes/com/sun/tools/javac/tree/DCTree.java
--- a/langtools/src/share/classes/com/sun/tools/javac/tree/DCTree.java	Thu Jan 31 18:58:17 2013 -0800
+++ b/langtools/src/share/classes/com/sun/tools/javac/tree/DCTree.java	Thu Jan 31 19:19:40 2013 -0800
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2011, 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
@@ -119,7 +119,7 @@
 
     }
 
-    public static abstract class DCBlockTag extends DCTree implements InlineTagTree {
+    public static abstract class DCBlockTag extends DCTree implements BlockTagTree {
         public String getTagName() {
             return getKind().tagName;
         }
@@ -169,7 +169,7 @@
         }
     }
 
-    public static class DCAuthor extends DCInlineTag implements AuthorTree {
+    public static class DCAuthor extends DCBlockTag implements AuthorTree {
         public final List<DCTree> name;
 
         DCAuthor(List<DCTree> name) {
@@ -640,7 +640,7 @@
         }
     }
 
-    public static class DCSince extends DCInlineTag implements SinceTree {
+    public static class DCSince extends DCBlockTag implements SinceTree {
         public final List<DCTree> body;
 
         DCSince(List<DCTree> body) {