1 /*
2  * Copyright (C) 2009 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package other;
18 
19 /**
20  * Parts of this class will disappear or change form.
21  */
22 public class Mutant {
23     public int disappearingField = 3;
24     public static int disappearingStaticField = 4;
25 
disappearingMethod()26     public void disappearingMethod() {
27         System.out.println("bye");
28     }
disappearingStaticMethod()29     public static void disappearingStaticMethod() {
30         System.out.println("kthxbai");
31     }
32 
33     public int inaccessibleField = 5;
34     public static int inaccessibleStaticField = 6;
35 
inaccessibleMethod()36     public void inaccessibleMethod() {
37         System.out.println("no");
38     }
39 
inaccessibleStaticMethod()40     public static void inaccessibleStaticMethod() {
41         System.out.println("nay");
42     }
43 }
44