src/share/classes/com/sun/mirror/declaration/ConstructorDeclaration.java

Print this page




  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  22  * CA 95054 USA or visit www.sun.com if you need additional information or
  23  * have any questions.
  24  */
  25 
  26 package com.sun.mirror.declaration;
  27 
  28 
  29 /**
  30  * Represents a constructor of a class or interface.
  31  *





  32  * @author Joe Darcy
  33  * @author Scott Seligman
  34  * @since 1.5
  35  */
  36 

  37 public interface ConstructorDeclaration extends ExecutableDeclaration {
  38 }


  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  22  * CA 95054 USA or visit www.sun.com if you need additional information or
  23  * have any questions.
  24  */
  25 
  26 package com.sun.mirror.declaration;
  27 
  28 
  29 /**
  30  * Represents a constructor of a class or interface.
  31  *
  32  * @deprecated All components of this API have been superseded by the
  33  * standardized annotation processing API.  The replacement for the
  34  * functionality of this interface is included in {@link
  35  * javax.lang.model.element.ExecutableElement}.
  36  *
  37  * @author Joe Darcy
  38  * @author Scott Seligman
  39  * @since 1.5
  40  */
  41 @Deprecated
  42 @SuppressWarnings("deprecation")
  43 public interface ConstructorDeclaration extends ExecutableDeclaration {
  44 }