1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
/*
* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package pkg1;
import java.io.Serializable;
import java.util.Map;
/**
* @serial This is the serial tag's comment.
*/
public class RegClass implements Serializable {
/**
* Normal field in class.
*/
public String field;
/**
* Normal field in class.
*/
public String method$$;
/**
* Filed staring with $.
*/
public String $field;
/**
* Filed staring with underscore.
*/
public String _field;
/**
* Serial field
* @serial
*/
public boolean t_e$t;
/**
* Field in class with a $ in the name.
*/
public String fieldInCla$$;
/**
* Field name as just an underscore.
*/
public int _;
/**
* Field name as just a $.
*/
public int $;
/**
* Field name with underscore and $.
*/
public int _$;
/**
* Field name with $ and underscore.
*/
public int $_;
/**
* An array.
*/
public int arr[];
/**
* Another array.
*/
public int[] arr1;
/**
* A constant field.
*/
public static final int S_$$$$$INT = 0;
/**
* Another field.
*/
public DeprMemClass d____mc;
/**
* An enum.
*/
public static enum Te$t_Enum {
FLD_1,
$FLD2
};
/**
* A constructor.
*/
public RegClass(String p, int i) {
}
/**
* Method in Class.
* @param p a string
*/
public void _methodInClass(String p) {
}
/**
* Method in Class.
* @param p a string
* @param i an int
*/
public void _methodInClas$(String p, int i) {
}
/**
* Method with $ in the name.
* @param p a string array
*/
public void methodInCla$s(String[] p) {
}
/**
* Method with D[] as a parameter.
* @param p an array of D
*/
public void methodD(D[] p) {
}
/**
* Method with $A as a parameter.
* @param p an object of $A
*/
public void methodD($A p) {
}
/**
* Serial test.
* @serialData This is a serial data comment.
* @return null
*/
protected Object $readResolve(){return null;}
/**
* Simple method.
*/
public void method() {}
/**
* Generics.
*/
public static <A> void foo(Map<A, Map<A, A>> map) {}
/**
* A nested class.
*/
public class _NestedClas$ {}
/**
* Nested class D.
*/
class D {}
/**
* Nested class $A.
*/
class $A {}
}
|