src/jdk.compiler/share/classes/com/sun/tools/javac/tree/DCTree.java
changeset 55756 d48ffad997b1
parent 52487 5d1d07b72f15
equal deleted inserted replaced
55755:6e97fcd96aee 55756:d48ffad997b1
     1 /*
     1 /*
     2  * Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   324         public String getText() {
   324         public String getText() {
   325             return text;
   325             return text;
   326         }
   326         }
   327     }
   327     }
   328 
   328 
   329     public static class DCEndElement extends DCTree implements EndElementTree {
   329     public static class DCEndElement extends DCEndPosTree<DCStartElement> implements EndElementTree {
   330         public final Name name;
   330         public final Name name;
   331 
   331 
   332         DCEndElement(Name name) {
   332         DCEndElement(Name name) {
   333             this.name = name;
   333             this.name = name;
   334         }
   334         }