< prev index next >

langtools/test/tools/javap/T4501661.java

Print this page




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 import java.io.*;
  25 import java.util.*;
  26 
  27 /*
  28  * @test
  29  * @bug 4501661
  30  * @summary disallow mixing -public, -private, and -protected
  31  * @modules jdk.compiler
  32  */
  33 public class T4501661 {
  34     public static void main(String... args) throws Exception {
  35         new T4501661().run();
  36     }
  37 
  38     void run() throws Exception {
  39         File javaFile = writeTestFile();
  40         File classFile = compileTestFile(javaFile);
  41         boolean[] values = { false, true };
  42         for (boolean pack : values) {
  43             for (boolean priv : values) {
  44                 for (boolean prot : values) {
  45                     for (boolean publ : values) {
  46                         test(pack, priv, prot, publ, classFile);
  47                     }
  48                 }
  49             }
  50         }
  51 




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 import java.io.*;
  25 import java.util.*;
  26 
  27 /*
  28  * @test
  29  * @bug 4501661
  30  * @summary disallow mixing -public, -private, and -protected
  31  * @modules jdk.jdeps
  32  */
  33 public class T4501661 {
  34     public static void main(String... args) throws Exception {
  35         new T4501661().run();
  36     }
  37 
  38     void run() throws Exception {
  39         File javaFile = writeTestFile();
  40         File classFile = compileTestFile(javaFile);
  41         boolean[] values = { false, true };
  42         for (boolean pack : values) {
  43             for (boolean priv : values) {
  44                 for (boolean prot : values) {
  45                     for (boolean publ : values) {
  46                         test(pack, priv, prot, publ, classFile);
  47                     }
  48                 }
  49             }
  50         }
  51 


< prev index next >