src/java.compiler/share/classes/javax/lang/model/util/ElementScanner7.java
changeset 53218 9db2dda367c6
parent 50964 225b61293064
equal deleted inserted replaced
53217:0f9a83a93e52 53218:9db2dda367c6
     1 /*
     1 /*
     2  * Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2010, 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
    96      * default value.
    96      * default value.
    97      *
    97      *
    98      * @deprecated Release 7 is obsolete; update to a visitor for a newer
    98      * @deprecated Release 7 is obsolete; update to a visitor for a newer
    99      * release level.
    99      * release level.
   100      */
   100      */
   101     @Deprecated
   101     @Deprecated(since="12")
   102     protected ElementScanner7(){
   102     protected ElementScanner7(){
   103         super(null); // Superclass constructor deprecated too
   103         super(null); // Superclass constructor deprecated too
   104     }
   104     }
   105 
   105 
   106     /**
   106     /**
   110      * @param defaultValue the default value
   110      * @param defaultValue the default value
   111      *
   111      *
   112      * @deprecated Release 7 is obsolete; update to a visitor for a newer
   112      * @deprecated Release 7 is obsolete; update to a visitor for a newer
   113      * release level.
   113      * release level.
   114      */
   114      */
   115     @Deprecated
   115     @Deprecated(since="12")
   116     protected ElementScanner7(R defaultValue){
   116     protected ElementScanner7(R defaultValue){
   117         super(defaultValue); // Superclass constructor deprecated too
   117         super(defaultValue); // Superclass constructor deprecated too
   118     }
   118     }
   119 
   119 
   120     /**
   120     /**