1008N/A/*
1008N/A * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
1008N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
1008N/A *
1008N/A * This code is free software; you can redistribute it and/or modify it
1008N/A * under the terms of the GNU General Public License version 2 only, as
1008N/A * published by the Free Software Foundation.
1008N/A *
1008N/A * This code is distributed in the hope that it will be useful, but WITHOUT
1008N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1008N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
1008N/A * version 2 for more details (a copy is included in the LICENSE file that
1008N/A * accompanied this code).
1008N/A *
1008N/A * You should have received a copy of the GNU General Public License version
1008N/A * 2 along with this work; if not, write to the Free Software Foundation,
1008N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1008N/A *
1008N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1008N/A * or visit www.oracle.com if you need additional information or have any
1008N/A * questions.
1008N/A */
1008N/A
1008N/A/**
1008N/A * This class is used as input to TestDeprecation.java.
1008N/A */
1008N/A@ExpectedDeprecation(false)
1008N/Apublic class Dep1 {
1008N/A /**
1008N/A * @deprecated
1008N/A */
1008N/A @ExpectedDeprecation(true)
1008N/A public void method1() {}
1008N/A
1008N/A @Deprecated
1008N/A @ExpectedDeprecation(true)
1008N/A public void method2() {}
1008N/A
1008N/A
1008N/A // Parameters can't be deprecated.
1008N/A public void method3(/**
1008N/A * TODO re-deprecate once bug 6404756 is fixed.
1008N/A * @ deprecated
1008N/A */
1008N/A @ExpectedDeprecation(false)
1008N/A Object method3_param0) {}
1008N/A
1008N/A public void method4(// @Deprecated -- TODO uncomment once bug 6404756 is fixed.
1008N/A @ExpectedDeprecation(false)
1008N/A Object method4_param0, Object method4_param1) {}
1008N/A
1008N/A @ExpectedDeprecation(false)
1008N/A public void methodn() {}
1008N/A
1008N/A @ExpectedDeprecation(false)
1008N/A private Object field0;
1008N/A
1008N/A @Deprecated
1008N/A @ExpectedDeprecation(true)
1008N/A private Object field1;
1008N/A
1008N/A
1008N/A /**
1008N/A * @deprecated
1008N/A */
1008N/A @ExpectedDeprecation(true)
1008N/A private Object field3;
1008N/A
1008N/A @ExpectedDeprecation(true)
1008N/A @Deprecated
1008N/A class NestedClass {}
1008N/A}
1008N/A