1#
2# Copyright 2006-2013 the original author or authors.
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# Licensed under the Apache License, Version 2.0 (the "License");
17# you may not use this file except in compliance with the License.
18# You may obtain a copy of the License at
19#
20#     http://www.apache.org/licenses/LICENSE-2.0
21#
22# Unless required by applicable law or agreed to in writing, software
23# distributed under the License is distributed on an "AS IS" BASIS,
24# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25# See the License for the specific language governing permissions and
26# limitations under the License.
27#
28# Licensed under the Apache License, Version 2.0 (the "License");
29# you may not use this file except in compliance with the License.
30# You may obtain a copy of the License at
31#
32#     http://www.apache.org/licenses/LICENSE-2.0
33#
34# Unless required by applicable law or agreed to in writing, software
35# distributed under the License is distributed on an "AS IS" BASIS,
36# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
37# See the License for the specific language governing permissions and
38# limitations under the License.
39#
40# Licensed under the Apache License, Version 2.0 (the "License");
41# you may not use this file except in compliance with the License.
42# You may obtain a copy of the License at
43#
44#     http://www.apache.org/licenses/LICENSE-2.0
45#
46# Unless required by applicable law or agreed to in writing, software
47# distributed under the License is distributed on an "AS IS" BASIS,
48# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
49# See the License for the specific language governing permissions and
50# limitations under the License.
51#
52# List of candidate classes to attempt to instantiate in the Objenesis TCK.
53
54# Different visibilities of constructor.
55org.objenesis.tck.candidates.SerializableNoConstructor                          = No constructor (serializable)
56org.objenesis.tck.candidates.SerializableDefaultPublicConstructor               = Default public constructor (serializable)
57org.objenesis.tck.candidates.SerializableDefaultProtectedConstructor            = Default protected constructor (serializable)
58org.objenesis.tck.candidates.SerializableDefaultPackageConstructor              = Default package constructor (serializable)
59org.objenesis.tck.candidates.SerializableDefaultPrivateConstructor              = Default private constructor (serializable)
60org.objenesis.tck.candidates.SerializableReplacer								= Serializable replacing with another class
61org.objenesis.tck.candidates.SerializableResolver								= Serializable resolving to another class
62
63# Constructors that work with arguments passed in. 
64org.objenesis.tck.candidates.SerializableConstructorThrowingException           = Constructor throwing exception (serializable)
65org.objenesis.tck.candidates.SerializableConstructorWithArguments               = Constructor with arguments (serializable)
66org.objenesis.tck.candidates.SerializableConstructorWithMandatoryArguments      = Constructor with mandatory arguments (serializable)
67