Adding Mockito.
diff --git a/org.mockito/.classpath b/org.mockito/.classpath
new file mode 100644
index 0000000..d7812b0
--- /dev/null
+++ b/org.mockito/.classpath
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
+ <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+ <classpathentry exported="true" kind="lib" path=""/>
+ <classpathentry kind="output" path="bin"/>
+</classpath>
diff --git a/org.mockito/.project b/org.mockito/.project
new file mode 100644
index 0000000..b13e871
--- /dev/null
+++ b/org.mockito/.project
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.mockito</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.pde.ManifestBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.pde.SchemaBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.PluginNature</nature>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ </natures>
+</projectDescription>
diff --git a/org.mockito/.settings/org.eclipse.jdt.core.prefs b/org.mockito/.settings/org.eclipse.jdt.core.prefs
new file mode 100644
index 0000000..503e434
--- /dev/null
+++ b/org.mockito/.settings/org.eclipse.jdt.core.prefs
@@ -0,0 +1,8 @@
+#Tue May 03 16:18:48 PDT 2011
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
+org.eclipse.jdt.core.compiler.compliance=1.5
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.source=1.5
diff --git a/org.mockito/LICENSE b/org.mockito/LICENSE
new file mode 100644
index 0000000..e0840a4
--- /dev/null
+++ b/org.mockito/LICENSE
@@ -0,0 +1,21 @@
+The MIT License
+
+Copyright (c) 2007 Mockito contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
\ No newline at end of file
diff --git a/org.mockito/META-INF/MANIFEST.MF b/org.mockito/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..9a4ad22
--- /dev/null
+++ b/org.mockito/META-INF/MANIFEST.MF
@@ -0,0 +1,66 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: Mockito
+Bundle-SymbolicName: org.mockito
+Bundle-Version: 1.8.5
+Bundle-ClassPath: .
+Export-Package: org.hamcrest,
+ org.hamcrest.core,
+ org.hamcrest.internal,
+ org.mockito,
+ org.mockito.asm,
+ org.mockito.asm.signature,
+ org.mockito.asm.tree,
+ org.mockito.asm.tree.analysis,
+ org.mockito.asm.util,
+ org.mockito.cglib.beans,
+ org.mockito.cglib.core,
+ org.mockito.cglib.proxy,
+ org.mockito.cglib.reflect,
+ org.mockito.cglib.transform,
+ org.mockito.cglib.transform.impl,
+ org.mockito.cglib.util,
+ org.mockito.configuration,
+ org.mockito.exceptions,
+ org.mockito.exceptions.base,
+ org.mockito.exceptions.misusing,
+ org.mockito.exceptions.verification,
+ org.mockito.exceptions.verification.junit,
+ org.mockito.internal,
+ org.mockito.internal.configuration,
+ org.mockito.internal.creation,
+ org.mockito.internal.creation.cglib,
+ org.mockito.internal.creation.jmock,
+ org.mockito.internal.debugging,
+ org.mockito.internal.exceptions,
+ org.mockito.internal.exceptions.base,
+ org.mockito.internal.exceptions.util,
+ org.mockito.internal.invocation,
+ org.mockito.internal.invocation.realmethod,
+ org.mockito.internal.listeners,
+ org.mockito.internal.matchers,
+ org.mockito.internal.matchers.apachecommons,
+ org.mockito.internal.progress,
+ org.mockito.internal.reporting,
+ org.mockito.internal.runners,
+ org.mockito.internal.runners.util,
+ org.mockito.internal.stubbing,
+ org.mockito.internal.stubbing.answers,
+ org.mockito.internal.stubbing.defaultanswers,
+ org.mockito.internal.util,
+ org.mockito.internal.util.junit,
+ org.mockito.internal.util.reflection,
+ org.mockito.internal.verification,
+ org.mockito.internal.verification.api,
+ org.mockito.internal.verification.argumentmatching,
+ org.mockito.internal.verification.checkers,
+ org.mockito.invocation,
+ org.mockito.runners,
+ org.mockito.stubbing,
+ org.mockito.stubbing.answers,
+ org.mockito.verification,
+ org.objenesis,
+ org.objenesis.instantiator,
+ org.objenesis.instantiator.basic,
+ org.objenesis.instantiator.gcj
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
diff --git a/org.mockito/NOTICE b/org.mockito/NOTICE
new file mode 100644
index 0000000..0594174
--- /dev/null
+++ b/org.mockito/NOTICE
@@ -0,0 +1,11 @@
+Mockito license - MIT.
+
+Libraries used:
+
+Cglib - Apache License 2.0
+ASM - BSD license
+
+Mockito all distribution:
+
+Objenesis - MIT license
+Hamcrest - BSD license
\ No newline at end of file
diff --git a/org.mockito/asm-license.txt b/org.mockito/asm-license.txt
new file mode 100644
index 0000000..fe0bf7d
--- /dev/null
+++ b/org.mockito/asm-license.txt
@@ -0,0 +1,29 @@
+Copyright (c) 2000-2005 INRIA, France Telecom
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+3. Neither the name of the copyright holders nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/org.mockito/build.properties b/org.mockito/build.properties
new file mode 100644
index 0000000..2345361
--- /dev/null
+++ b/org.mockito/build.properties
@@ -0,0 +1,10 @@
+source.. = .
+output.. = .
+bin.includes = META-INF/,\
+ LICENSE,\
+ NOTICE,\
+ asm-license.txt,\
+ cglib-license.txt,\
+ hamcrest-license.txt,\
+ objenesis-license.txt,\
+ org/
diff --git a/org.mockito/cglib-license.txt b/org.mockito/cglib-license.txt
new file mode 100644
index 0000000..f49a4e1
--- /dev/null
+++ b/org.mockito/cglib-license.txt
@@ -0,0 +1,201 @@
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
\ No newline at end of file
diff --git a/org.mockito/hamcrest-license.txt b/org.mockito/hamcrest-license.txt
new file mode 100644
index 0000000..e3d4feb
--- /dev/null
+++ b/org.mockito/hamcrest-license.txt
@@ -0,0 +1,27 @@
+BSD License
+
+Copyright (c) 2000-2006, www.hamcrest.org
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+Redistributions of source code must retain the above copyright notice, this list of
+conditions and the following disclaimer. Redistributions in binary form must reproduce
+the above copyright notice, this list of conditions and the following disclaimer in
+the documentation and/or other materials provided with the distribution.
+
+Neither the name of Hamcrest nor the names of its contributors may be used to endorse
+or promote products derived from this software without specific prior written
+permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
+EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
+SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
+TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
+WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
+DAMAGE.
\ No newline at end of file
diff --git a/org.mockito/objenesis-license.txt b/org.mockito/objenesis-license.txt
new file mode 100644
index 0000000..74582ac
--- /dev/null
+++ b/org.mockito/objenesis-license.txt
@@ -0,0 +1,18 @@
+Copyright (c) 2003-2008, Objenesis Team and all contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/org.mockito/org/hamcrest/BaseDescription.class b/org.mockito/org/hamcrest/BaseDescription.class
new file mode 100644
index 0000000..ea43537
--- /dev/null
+++ b/org.mockito/org/hamcrest/BaseDescription.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/BaseMatcher.class b/org.mockito/org/hamcrest/BaseMatcher.class
new file mode 100644
index 0000000..1250efc
--- /dev/null
+++ b/org.mockito/org/hamcrest/BaseMatcher.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/CoreMatchers.class b/org.mockito/org/hamcrest/CoreMatchers.class
new file mode 100644
index 0000000..dec278f
--- /dev/null
+++ b/org.mockito/org/hamcrest/CoreMatchers.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/Description.class b/org.mockito/org/hamcrest/Description.class
new file mode 100644
index 0000000..5e9083b
--- /dev/null
+++ b/org.mockito/org/hamcrest/Description.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/Factory.class b/org.mockito/org/hamcrest/Factory.class
new file mode 100644
index 0000000..1c8b528
--- /dev/null
+++ b/org.mockito/org/hamcrest/Factory.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/Matcher.class b/org.mockito/org/hamcrest/Matcher.class
new file mode 100644
index 0000000..dcbd713
--- /dev/null
+++ b/org.mockito/org/hamcrest/Matcher.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/SelfDescribing.class b/org.mockito/org/hamcrest/SelfDescribing.class
new file mode 100644
index 0000000..d54f051
--- /dev/null
+++ b/org.mockito/org/hamcrest/SelfDescribing.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/StringDescription.class b/org.mockito/org/hamcrest/StringDescription.class
new file mode 100644
index 0000000..2d8990e
--- /dev/null
+++ b/org.mockito/org/hamcrest/StringDescription.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/core/AllOf.class b/org.mockito/org/hamcrest/core/AllOf.class
new file mode 100644
index 0000000..0049502
--- /dev/null
+++ b/org.mockito/org/hamcrest/core/AllOf.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/core/AnyOf.class b/org.mockito/org/hamcrest/core/AnyOf.class
new file mode 100644
index 0000000..3440405
--- /dev/null
+++ b/org.mockito/org/hamcrest/core/AnyOf.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/core/DescribedAs.class b/org.mockito/org/hamcrest/core/DescribedAs.class
new file mode 100644
index 0000000..a6501a9
--- /dev/null
+++ b/org.mockito/org/hamcrest/core/DescribedAs.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/core/Is.class b/org.mockito/org/hamcrest/core/Is.class
new file mode 100644
index 0000000..f64a618
--- /dev/null
+++ b/org.mockito/org/hamcrest/core/Is.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/core/IsAnything.class b/org.mockito/org/hamcrest/core/IsAnything.class
new file mode 100644
index 0000000..60b0596
--- /dev/null
+++ b/org.mockito/org/hamcrest/core/IsAnything.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/core/IsEqual.class b/org.mockito/org/hamcrest/core/IsEqual.class
new file mode 100644
index 0000000..3df1d41
--- /dev/null
+++ b/org.mockito/org/hamcrest/core/IsEqual.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/core/IsInstanceOf.class b/org.mockito/org/hamcrest/core/IsInstanceOf.class
new file mode 100644
index 0000000..620500e
--- /dev/null
+++ b/org.mockito/org/hamcrest/core/IsInstanceOf.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/core/IsNot.class b/org.mockito/org/hamcrest/core/IsNot.class
new file mode 100644
index 0000000..b407aeb
--- /dev/null
+++ b/org.mockito/org/hamcrest/core/IsNot.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/core/IsNull.class b/org.mockito/org/hamcrest/core/IsNull.class
new file mode 100644
index 0000000..4ee3142
--- /dev/null
+++ b/org.mockito/org/hamcrest/core/IsNull.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/core/IsSame.class b/org.mockito/org/hamcrest/core/IsSame.class
new file mode 100644
index 0000000..3dc22e3
--- /dev/null
+++ b/org.mockito/org/hamcrest/core/IsSame.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/core/package.html b/org.mockito/org/hamcrest/core/package.html
new file mode 100644
index 0000000..7bb0ffe
--- /dev/null
+++ b/org.mockito/org/hamcrest/core/package.html
@@ -0,0 +1,7 @@
+<html>
+<head>
+</head>
+<body>
+ <p>Fundamental matchers of objects and values, and composite matchers.</p>
+</body>
+</html>
diff --git a/org.mockito/org/hamcrest/internal/ArrayIterator.class b/org.mockito/org/hamcrest/internal/ArrayIterator.class
new file mode 100644
index 0000000..39cfebb
--- /dev/null
+++ b/org.mockito/org/hamcrest/internal/ArrayIterator.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/internal/SelfDescribingValue.class b/org.mockito/org/hamcrest/internal/SelfDescribingValue.class
new file mode 100644
index 0000000..5c87156
--- /dev/null
+++ b/org.mockito/org/hamcrest/internal/SelfDescribingValue.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/internal/SelfDescribingValueIterator.class b/org.mockito/org/hamcrest/internal/SelfDescribingValueIterator.class
new file mode 100644
index 0000000..340ce6d
--- /dev/null
+++ b/org.mockito/org/hamcrest/internal/SelfDescribingValueIterator.class
Binary files differ
diff --git a/org.mockito/org/hamcrest/package.html b/org.mockito/org/hamcrest/package.html
new file mode 100644
index 0000000..143c704
--- /dev/null
+++ b/org.mockito/org/hamcrest/package.html
@@ -0,0 +1,9 @@
+<html>
+<head>
+</head>
+<body>
+ <p>The stable API defining Matcher and its associated interfaces and classes.
+ Hamcrest sub-projects define their convenience classes in the org.hamcrest package.
+ </p>
+</body>
+</html>
diff --git a/org.mockito/org/mockito/AdditionalMatchers.class b/org.mockito/org/mockito/AdditionalMatchers.class
new file mode 100644
index 0000000..6810860
--- /dev/null
+++ b/org.mockito/org/mockito/AdditionalMatchers.class
Binary files differ
diff --git a/org.mockito/org/mockito/Answers.class b/org.mockito/org/mockito/Answers.class
new file mode 100644
index 0000000..cf02f94
--- /dev/null
+++ b/org.mockito/org/mockito/Answers.class
Binary files differ
diff --git a/org.mockito/org/mockito/ArgumentCaptor.class b/org.mockito/org/mockito/ArgumentCaptor.class
new file mode 100644
index 0000000..2f0b5d9
--- /dev/null
+++ b/org.mockito/org/mockito/ArgumentCaptor.class
Binary files differ
diff --git a/org.mockito/org/mockito/ArgumentMatcher.class b/org.mockito/org/mockito/ArgumentMatcher.class
new file mode 100644
index 0000000..4c7abf6
--- /dev/null
+++ b/org.mockito/org/mockito/ArgumentMatcher.class
Binary files differ
diff --git a/org.mockito/org/mockito/BDDMockito$BDDMyOngoingStubbing.class b/org.mockito/org/mockito/BDDMockito$BDDMyOngoingStubbing.class
new file mode 100644
index 0000000..4f98d7c
--- /dev/null
+++ b/org.mockito/org/mockito/BDDMockito$BDDMyOngoingStubbing.class
Binary files differ
diff --git a/org.mockito/org/mockito/BDDMockito$BDDOngoingStubbingImpl.class b/org.mockito/org/mockito/BDDMockito$BDDOngoingStubbingImpl.class
new file mode 100644
index 0000000..f586910
--- /dev/null
+++ b/org.mockito/org/mockito/BDDMockito$BDDOngoingStubbingImpl.class
Binary files differ
diff --git a/org.mockito/org/mockito/BDDMockito$BDDStubber.class b/org.mockito/org/mockito/BDDMockito$BDDStubber.class
new file mode 100644
index 0000000..5840930
--- /dev/null
+++ b/org.mockito/org/mockito/BDDMockito$BDDStubber.class
Binary files differ
diff --git a/org.mockito/org/mockito/BDDMockito$BDDStubberImpl.class b/org.mockito/org/mockito/BDDMockito$BDDStubberImpl.class
new file mode 100644
index 0000000..62e7302
--- /dev/null
+++ b/org.mockito/org/mockito/BDDMockito$BDDStubberImpl.class
Binary files differ
diff --git a/org.mockito/org/mockito/BDDMockito.class b/org.mockito/org/mockito/BDDMockito.class
new file mode 100644
index 0000000..eb4e175
--- /dev/null
+++ b/org.mockito/org/mockito/BDDMockito.class
Binary files differ
diff --git a/org.mockito/org/mockito/Captor.class b/org.mockito/org/mockito/Captor.class
new file mode 100644
index 0000000..81ab553
--- /dev/null
+++ b/org.mockito/org/mockito/Captor.class
Binary files differ
diff --git a/org.mockito/org/mockito/InOrder.class b/org.mockito/org/mockito/InOrder.class
new file mode 100644
index 0000000..361eafa
--- /dev/null
+++ b/org.mockito/org/mockito/InOrder.class
Binary files differ
diff --git a/org.mockito/org/mockito/InjectMocks.class b/org.mockito/org/mockito/InjectMocks.class
new file mode 100644
index 0000000..ff9c072
--- /dev/null
+++ b/org.mockito/org/mockito/InjectMocks.class
Binary files differ
diff --git a/org.mockito/org/mockito/Matchers.class b/org.mockito/org/mockito/Matchers.class
new file mode 100644
index 0000000..3924d7d
--- /dev/null
+++ b/org.mockito/org/mockito/Matchers.class
Binary files differ
diff --git a/org.mockito/org/mockito/Mock.class b/org.mockito/org/mockito/Mock.class
new file mode 100644
index 0000000..e023dd2
--- /dev/null
+++ b/org.mockito/org/mockito/Mock.class
Binary files differ
diff --git a/org.mockito/org/mockito/MockSettings.class b/org.mockito/org/mockito/MockSettings.class
new file mode 100644
index 0000000..1fd1414
--- /dev/null
+++ b/org.mockito/org/mockito/MockSettings.class
Binary files differ
diff --git a/org.mockito/org/mockito/Mockito.class b/org.mockito/org/mockito/Mockito.class
new file mode 100644
index 0000000..f078c2a
--- /dev/null
+++ b/org.mockito/org/mockito/Mockito.class
Binary files differ
diff --git a/org.mockito/org/mockito/MockitoAnnotations$Mock.class b/org.mockito/org/mockito/MockitoAnnotations$Mock.class
new file mode 100644
index 0000000..e6c0164
--- /dev/null
+++ b/org.mockito/org/mockito/MockitoAnnotations$Mock.class
Binary files differ
diff --git a/org.mockito/org/mockito/MockitoAnnotations.class b/org.mockito/org/mockito/MockitoAnnotations.class
new file mode 100644
index 0000000..3c06d0f
--- /dev/null
+++ b/org.mockito/org/mockito/MockitoAnnotations.class
Binary files differ
diff --git a/org.mockito/org/mockito/MockitoDebugger.class b/org.mockito/org/mockito/MockitoDebugger.class
new file mode 100644
index 0000000..c266fff
--- /dev/null
+++ b/org.mockito/org/mockito/MockitoDebugger.class
Binary files differ
diff --git a/org.mockito/org/mockito/ReturnValues.class b/org.mockito/org/mockito/ReturnValues.class
new file mode 100644
index 0000000..73d2b00
--- /dev/null
+++ b/org.mockito/org/mockito/ReturnValues.class
Binary files differ
diff --git a/org.mockito/org/mockito/Spy.class b/org.mockito/org/mockito/Spy.class
new file mode 100644
index 0000000..d10a7e9
--- /dev/null
+++ b/org.mockito/org/mockito/Spy.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/AnnotationVisitor.class b/org.mockito/org/mockito/asm/AnnotationVisitor.class
new file mode 100644
index 0000000..9dfab56
--- /dev/null
+++ b/org.mockito/org/mockito/asm/AnnotationVisitor.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/AnnotationWriter.class b/org.mockito/org/mockito/asm/AnnotationWriter.class
new file mode 100644
index 0000000..d2fb3a2
--- /dev/null
+++ b/org.mockito/org/mockito/asm/AnnotationWriter.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/Attribute.class b/org.mockito/org/mockito/asm/Attribute.class
new file mode 100644
index 0000000..7f38cda
--- /dev/null
+++ b/org.mockito/org/mockito/asm/Attribute.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/ByteVector.class b/org.mockito/org/mockito/asm/ByteVector.class
new file mode 100644
index 0000000..858c6c8
--- /dev/null
+++ b/org.mockito/org/mockito/asm/ByteVector.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/ClassAdapter.class b/org.mockito/org/mockito/asm/ClassAdapter.class
new file mode 100644
index 0000000..b984ef8
--- /dev/null
+++ b/org.mockito/org/mockito/asm/ClassAdapter.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/ClassReader.class b/org.mockito/org/mockito/asm/ClassReader.class
new file mode 100644
index 0000000..bdfa4e7
--- /dev/null
+++ b/org.mockito/org/mockito/asm/ClassReader.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/ClassVisitor.class b/org.mockito/org/mockito/asm/ClassVisitor.class
new file mode 100644
index 0000000..c1408d5
--- /dev/null
+++ b/org.mockito/org/mockito/asm/ClassVisitor.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/ClassWriter.class b/org.mockito/org/mockito/asm/ClassWriter.class
new file mode 100644
index 0000000..9ff86f6
--- /dev/null
+++ b/org.mockito/org/mockito/asm/ClassWriter.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/Edge.class b/org.mockito/org/mockito/asm/Edge.class
new file mode 100644
index 0000000..4df88f4
--- /dev/null
+++ b/org.mockito/org/mockito/asm/Edge.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/FieldVisitor.class b/org.mockito/org/mockito/asm/FieldVisitor.class
new file mode 100644
index 0000000..7016d35
--- /dev/null
+++ b/org.mockito/org/mockito/asm/FieldVisitor.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/FieldWriter.class b/org.mockito/org/mockito/asm/FieldWriter.class
new file mode 100644
index 0000000..c764aa4
--- /dev/null
+++ b/org.mockito/org/mockito/asm/FieldWriter.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/Frame.class b/org.mockito/org/mockito/asm/Frame.class
new file mode 100644
index 0000000..d3d4392
--- /dev/null
+++ b/org.mockito/org/mockito/asm/Frame.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/Handler.class b/org.mockito/org/mockito/asm/Handler.class
new file mode 100644
index 0000000..a336796
--- /dev/null
+++ b/org.mockito/org/mockito/asm/Handler.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/Item.class b/org.mockito/org/mockito/asm/Item.class
new file mode 100644
index 0000000..7c43d9a
--- /dev/null
+++ b/org.mockito/org/mockito/asm/Item.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/Label.class b/org.mockito/org/mockito/asm/Label.class
new file mode 100644
index 0000000..9fbf3e2
--- /dev/null
+++ b/org.mockito/org/mockito/asm/Label.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/MethodAdapter.class b/org.mockito/org/mockito/asm/MethodAdapter.class
new file mode 100644
index 0000000..ed1cd6e
--- /dev/null
+++ b/org.mockito/org/mockito/asm/MethodAdapter.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/MethodVisitor.class b/org.mockito/org/mockito/asm/MethodVisitor.class
new file mode 100644
index 0000000..cf11020
--- /dev/null
+++ b/org.mockito/org/mockito/asm/MethodVisitor.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/MethodWriter.class b/org.mockito/org/mockito/asm/MethodWriter.class
new file mode 100644
index 0000000..8e70529
--- /dev/null
+++ b/org.mockito/org/mockito/asm/MethodWriter.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/Opcodes.class b/org.mockito/org/mockito/asm/Opcodes.class
new file mode 100644
index 0000000..78b9cfe
--- /dev/null
+++ b/org.mockito/org/mockito/asm/Opcodes.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/Type.class b/org.mockito/org/mockito/asm/Type.class
new file mode 100644
index 0000000..a399c67
--- /dev/null
+++ b/org.mockito/org/mockito/asm/Type.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/package.html b/org.mockito/org/mockito/asm/package.html
new file mode 100644
index 0000000..b87e4f2
--- /dev/null
+++ b/org.mockito/org/mockito/asm/package.html
@@ -0,0 +1,87 @@
+<html>
+<!--
+ * ASM: a very small and fast Java bytecode manipulation framework
+ * Copyright (c) 2000-2005 INRIA, France Telecom
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. Neither the name of the copyright holders nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+-->
+<body>
+Provides a small and fast bytecode manipulation framework.
+
+<p>
+The <a href="http://www.objectweb.org/asm">ASM</a> framework is organized
+around the {@link org.objectweb.asm.ClassVisitor ClassVisitor},
+{@link org.objectweb.asm.FieldVisitor FieldVisitor} and
+{@link org.objectweb.asm.MethodVisitor MethodVisitor} interfaces, which allow
+one to visit the fields and methods of a class, including the bytecode
+instructions of each method.
+
+<p>
+In addition to these main interfaces, ASM provides a {@link
+org.objectweb.asm.ClassReader ClassReader} class, that can parse an
+existing class and make a given visitor visit it. ASM also provides
+a {@link org.objectweb.asm.ClassWriter ClassWriter} class, which is
+a visitor that generates Java class files.
+
+<p>
+In order to generate a class from scratch, only the {@link
+org.objectweb.asm.ClassWriter ClassWriter} class is necessary. Indeed,
+in order to generate a class, one must just call its visit<i>XXX</i>
+methods with the appropriate arguments to generate the desired fields
+and methods. See the "helloworld" example in the ASM distribution for
+more details about class generation.
+
+<p>
+In order to modify existing classes, one must use a {@link
+org.objectweb.asm.ClassReader ClassReader} class to analyze
+the original class, a class modifier, and a {@link org.objectweb.asm.ClassWriter
+ClassWriter} to construct the modified class. The class modifier
+is just a {@link org.objectweb.asm.ClassVisitor ClassVisitor}
+that delegates most of the work to another {@link org.objectweb.asm.ClassVisitor
+ClassVisitor}, but that sometimes changes some parameter values,
+or call additional methods, in order to implement the desired
+modification process. In order to make it easier to implement such
+class modifiers, ASM provides the {@link org.objectweb.asm.ClassAdapter
+ClassAdapter} and {@link org.objectweb.asm.MethodAdapter MethodAdapter}
+classes, which implement the {@link org.objectweb.asm.ClassVisitor ClassVisitor}
+and {@link org.objectweb.asm.MethodVisitor MethodVisitor} interfaces by
+delegating all work to other visitors. See the "adapt" example in the ASM
+distribution for more details about class modification.
+
+<p>
+The size of the core ASM library, <tt>asm.jar</tt>, is only 42KB, which is much
+smaller than the size of the
+<a href="http://jakarta.apache.org/bcel">BCEL</a> library (504KB), and than the
+size of the
+<a href="http://serp.sourceforge.net">SERP</a> library (150KB). ASM is also
+much faster than these tools. Indeed the overhead of a load time class
+transformation process is of the order of 60% with ASM, 700% or more with BCEL,
+and 1100% or more with SERP (see the <tt>test/perf</tt> directory in the ASM
+distribution)!
+
+@since ASM 1.3
+</body>
+</html>
diff --git a/org.mockito/org/mockito/asm/signature/SignatureReader.class b/org.mockito/org/mockito/asm/signature/SignatureReader.class
new file mode 100644
index 0000000..e0d8d3d
--- /dev/null
+++ b/org.mockito/org/mockito/asm/signature/SignatureReader.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/signature/SignatureVisitor.class b/org.mockito/org/mockito/asm/signature/SignatureVisitor.class
new file mode 100644
index 0000000..9de40eb
--- /dev/null
+++ b/org.mockito/org/mockito/asm/signature/SignatureVisitor.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/signature/SignatureWriter.class b/org.mockito/org/mockito/asm/signature/SignatureWriter.class
new file mode 100644
index 0000000..92d35aa
--- /dev/null
+++ b/org.mockito/org/mockito/asm/signature/SignatureWriter.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/signature/package.html b/org.mockito/org/mockito/asm/signature/package.html
new file mode 100644
index 0000000..b9de4cf
--- /dev/null
+++ b/org.mockito/org/mockito/asm/signature/package.html
@@ -0,0 +1,36 @@
+<html>
+<!--
+ * ASM: a very small and fast Java bytecode manipulation framework
+ * Copyright (c) 2000-2005 INRIA, France Telecom
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. Neither the name of the copyright holders nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+-->
+<body>
+Provides support for type signatures.
+
+@since ASM 2.0
+</body>
+</html>
diff --git a/org.mockito/org/mockito/asm/tree/AbstractInsnNode.class b/org.mockito/org/mockito/asm/tree/AbstractInsnNode.class
new file mode 100644
index 0000000..cf52ae4
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/AbstractInsnNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/AnnotationNode.class b/org.mockito/org/mockito/asm/tree/AnnotationNode.class
new file mode 100644
index 0000000..6dba028
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/AnnotationNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/ClassNode.class b/org.mockito/org/mockito/asm/tree/ClassNode.class
new file mode 100644
index 0000000..8352dba
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/ClassNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/FieldInsnNode.class b/org.mockito/org/mockito/asm/tree/FieldInsnNode.class
new file mode 100644
index 0000000..aac607d
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/FieldInsnNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/FieldNode.class b/org.mockito/org/mockito/asm/tree/FieldNode.class
new file mode 100644
index 0000000..2f6c3c8
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/FieldNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/FrameNode.class b/org.mockito/org/mockito/asm/tree/FrameNode.class
new file mode 100644
index 0000000..c570120
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/FrameNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/IincInsnNode.class b/org.mockito/org/mockito/asm/tree/IincInsnNode.class
new file mode 100644
index 0000000..9d880a2
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/IincInsnNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/InnerClassNode.class b/org.mockito/org/mockito/asm/tree/InnerClassNode.class
new file mode 100644
index 0000000..1658e7c
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/InnerClassNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/InsnList$1.class b/org.mockito/org/mockito/asm/tree/InsnList$1.class
new file mode 100644
index 0000000..0cac910
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/InsnList$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/InsnList$InsnListIterator.class b/org.mockito/org/mockito/asm/tree/InsnList$InsnListIterator.class
new file mode 100644
index 0000000..b39597b
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/InsnList$InsnListIterator.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/InsnList.class b/org.mockito/org/mockito/asm/tree/InsnList.class
new file mode 100644
index 0000000..2c1dcf3
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/InsnList.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/InsnNode.class b/org.mockito/org/mockito/asm/tree/InsnNode.class
new file mode 100644
index 0000000..71be58b
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/InsnNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/IntInsnNode.class b/org.mockito/org/mockito/asm/tree/IntInsnNode.class
new file mode 100644
index 0000000..d5ce318
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/IntInsnNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/JumpInsnNode.class b/org.mockito/org/mockito/asm/tree/JumpInsnNode.class
new file mode 100644
index 0000000..54ce2f4
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/JumpInsnNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/LabelNode.class b/org.mockito/org/mockito/asm/tree/LabelNode.class
new file mode 100644
index 0000000..57c2d4e
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/LabelNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/LdcInsnNode.class b/org.mockito/org/mockito/asm/tree/LdcInsnNode.class
new file mode 100644
index 0000000..9f9747d
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/LdcInsnNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/LineNumberNode.class b/org.mockito/org/mockito/asm/tree/LineNumberNode.class
new file mode 100644
index 0000000..3f16a60
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/LineNumberNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/LocalVariableNode.class b/org.mockito/org/mockito/asm/tree/LocalVariableNode.class
new file mode 100644
index 0000000..ed43f2d
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/LocalVariableNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/LookupSwitchInsnNode.class b/org.mockito/org/mockito/asm/tree/LookupSwitchInsnNode.class
new file mode 100644
index 0000000..845c0c7
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/LookupSwitchInsnNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/MemberNode.class b/org.mockito/org/mockito/asm/tree/MemberNode.class
new file mode 100644
index 0000000..6a39419
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/MemberNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/MethodInsnNode.class b/org.mockito/org/mockito/asm/tree/MethodInsnNode.class
new file mode 100644
index 0000000..02431b0
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/MethodInsnNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/MethodNode$1.class b/org.mockito/org/mockito/asm/tree/MethodNode$1.class
new file mode 100644
index 0000000..626bc8a
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/MethodNode$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/MethodNode.class b/org.mockito/org/mockito/asm/tree/MethodNode.class
new file mode 100644
index 0000000..9fe77ec
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/MethodNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/MultiANewArrayInsnNode.class b/org.mockito/org/mockito/asm/tree/MultiANewArrayInsnNode.class
new file mode 100644
index 0000000..1d96b6c
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/MultiANewArrayInsnNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/TableSwitchInsnNode.class b/org.mockito/org/mockito/asm/tree/TableSwitchInsnNode.class
new file mode 100644
index 0000000..4130ff4
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/TableSwitchInsnNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/TryCatchBlockNode.class b/org.mockito/org/mockito/asm/tree/TryCatchBlockNode.class
new file mode 100644
index 0000000..0437119
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/TryCatchBlockNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/TypeInsnNode.class b/org.mockito/org/mockito/asm/tree/TypeInsnNode.class
new file mode 100644
index 0000000..96858c3
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/TypeInsnNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/VarInsnNode.class b/org.mockito/org/mockito/asm/tree/VarInsnNode.class
new file mode 100644
index 0000000..efa4f0f
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/VarInsnNode.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/analysis/Analyzer.class b/org.mockito/org/mockito/asm/tree/analysis/Analyzer.class
new file mode 100644
index 0000000..a3a7121
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/analysis/Analyzer.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/analysis/AnalyzerException.class b/org.mockito/org/mockito/asm/tree/analysis/AnalyzerException.class
new file mode 100644
index 0000000..4b57a1f
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/analysis/AnalyzerException.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/analysis/BasicInterpreter.class b/org.mockito/org/mockito/asm/tree/analysis/BasicInterpreter.class
new file mode 100644
index 0000000..3ab55e2
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/analysis/BasicInterpreter.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/analysis/BasicValue.class b/org.mockito/org/mockito/asm/tree/analysis/BasicValue.class
new file mode 100644
index 0000000..6effb64
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/analysis/BasicValue.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/analysis/BasicVerifier.class b/org.mockito/org/mockito/asm/tree/analysis/BasicVerifier.class
new file mode 100644
index 0000000..0f2ffa3
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/analysis/BasicVerifier.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/analysis/Frame.class b/org.mockito/org/mockito/asm/tree/analysis/Frame.class
new file mode 100644
index 0000000..bf6e0d8
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/analysis/Frame.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/analysis/Interpreter.class b/org.mockito/org/mockito/asm/tree/analysis/Interpreter.class
new file mode 100644
index 0000000..8b40437
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/analysis/Interpreter.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/analysis/SimpleVerifier.class b/org.mockito/org/mockito/asm/tree/analysis/SimpleVerifier.class
new file mode 100644
index 0000000..ff5b487
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/analysis/SimpleVerifier.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/analysis/SmallSet.class b/org.mockito/org/mockito/asm/tree/analysis/SmallSet.class
new file mode 100644
index 0000000..27ed98d
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/analysis/SmallSet.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/analysis/SourceInterpreter.class b/org.mockito/org/mockito/asm/tree/analysis/SourceInterpreter.class
new file mode 100644
index 0000000..e2f048f
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/analysis/SourceInterpreter.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/analysis/SourceValue.class b/org.mockito/org/mockito/asm/tree/analysis/SourceValue.class
new file mode 100644
index 0000000..79e5fd7
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/analysis/SourceValue.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/analysis/Subroutine.class b/org.mockito/org/mockito/asm/tree/analysis/Subroutine.class
new file mode 100644
index 0000000..b43c542
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/analysis/Subroutine.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/analysis/Value.class b/org.mockito/org/mockito/asm/tree/analysis/Value.class
new file mode 100644
index 0000000..59133cd
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/analysis/Value.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/tree/analysis/package.html b/org.mockito/org/mockito/asm/tree/analysis/package.html
new file mode 100644
index 0000000..46b6c26
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/analysis/package.html
@@ -0,0 +1,67 @@
+<html>
+<!--
+ * ASM: a very small and fast Java bytecode manipulation framework
+ * Copyright (c) 2000-2005 INRIA, France Telecom
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. Neither the name of the copyright holders nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+-->
+<body>
+
+<p>
+Provides a framework for static code analysis based on the asm.tree package.
+</p>
+
+<p>
+Basic usage:
+</p>
+
+<pre>
+ClassReader cr = new ClassReader(bytecode);
+ClassNode cn = new ClassNode();
+cr.accept(cn, ClassReader.SKIP_DEBUG);
+
+List methods = cn.methods;
+for (int i = 0; i < methods.size(); ++i) {
+ MethodNode method = (MethodNode) methods.get(i);
+ if (method.instructions.size() > 0) {
+ Analyzer a = new Analyzer(new BasicInterpreter());
+ a.analyze(cn.name, method);
+ Frame[] frames = a.getFrames();
+ // Elements of the frames arrray now contains info for each instruction
+ // from the analyzed method. BasicInterpreter creates BasicValue, that
+ // is using simplified type system that distinguishes the UNINITIALZED,
+ // INT, FLOAT, LONG, DOUBLE, REFERENCE and RETURNADDRESS types.
+ ...
+ }
+}
+</pre>
+
+<p>
+@since ASM 1.4.3
+</p>
+
+</body>
+</html>
diff --git a/org.mockito/org/mockito/asm/tree/package.html b/org.mockito/org/mockito/asm/tree/package.html
new file mode 100644
index 0000000..92ea013
--- /dev/null
+++ b/org.mockito/org/mockito/asm/tree/package.html
@@ -0,0 +1,192 @@
+<html>
+<!--
+ * ASM: a very small and fast Java bytecode manipulation framework
+ * Copyright (c) 2000-2005 INRIA, France Telecom
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. Neither the name of the copyright holders nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+-->
+<body>
+
+<p>
+Provides an ASM visitor that constructs a tree representation of the
+classes it visits. This class adapter can be useful to implement "complex"
+class manipulation operations, i.e., operations that would be very hard to
+implement without using a tree representation (such as optimizing the number
+of local variables used by a method).
+</p>
+
+<p>
+However, this class adapter has a cost: it makes ASM bigger and slower. Indeed
+it requires more than twenty new classes, and multiplies the time needed to
+transform a class by almost two (it is almost two times faster to read, "modify"
+and write a class with a ClassAdapter than with a ClassNode). This is why
+this package is bundled in an optional <tt>asm-tree.jar</tt> library that
+is separated from (but requires) the <tt>asm.jar</tt> library, which contains
+the core ASM framework. This is also why <i><font color="red">it is recommended
+not to use this class adapter when it is possible</font></i>.
+</p>
+
+<p>
+The root class is the ClassNode, that can be created from existing bytecode. For example:
+</p>
+
+<pre>
+ ClassReader cr = new ClassReader(source);
+ ClassNode cn = new ClassNode();
+ cr.accept(cn, true);
+</pre>
+
+<p>
+Now content of ClassNode can be modified and then
+serialized back into bytecode:
+</p>
+
+<pre>
+ ClassWriter cw = new ClassWriter(true);
+ cn.accept(cw);
+</pre>
+
+<p>
+Using simple ClassAdapter it is possible to create MethodNode instances per-method.
+In this example MethodNode is acting as a buffer that is flushed out at visitEnd() call:
+</p>
+
+<pre>
+ ClassReader cr = new ClassReader(source);
+ ClassWriter cw = new ClassWriter();
+ ClassAdapter ca = new ClassAdapter(cw) {
+ public MethodVisitor visitMethod(int access, String name,
+ String desc, String signature, String[] exceptions) {
+ final MethodVisitor mv = super.visitMethod(access, name, desc, signature, exceptions);
+ MethodNode mn = new MethodNode(access, name, desc, signature, exceptions) {
+ public void visitEnd() {
+ // transform or analyze method code using tree API
+ accept(mv);
+ }
+ };
+ }
+ };
+ cr.accept(ca, true);
+</pre>
+
+<p>
+Several strategies can be used to construct method code from scratch. The first
+option is to create a MethodNode, and then create XXXInsnNode instances and
+add them to the instructions list:
+</p>
+
+<pre>
+MethodNode m = new MethodNode(...);
+m.instructions.add(new VarInsnNode(ALOAD, 0));
+...
+</pre>
+
+<p>
+Alternatively, you can use the fact that MethodNode is a MethodVisitor, and use
+that to create the XXXInsnNode and add them to the instructions list through
+the standard MethodVisitor interface:
+</p>
+
+<pre>
+MethodNode m = new MethodNode(...);
+m.visitVarInsn(ALOAD, 0);
+...
+</pre>
+
+<p>
+If you cannot generate all the instructions in sequential order, i.e. if you
+need to save some pointer in the instruction list and then insert instructions
+at that place after other instructions have been generated, you can use InsnList
+methods insert() and insertBefore() to insert instructions at saved pointer.
+</p>
+
+<pre>
+MethodNode m = new MethodNode(...);
+m.visitVarInsn(ALOAD, 0);
+AbstractInsnNode ptr = m.instructions.getLast();
+m.visitVarInsn(ALOAD, 1);
+// inserts an instruction between ALOAD 0 and ALOAD 1
+m.instructions.insert(ptr, new VarInsnNode(ALOAD, 0));
+...
+</pre>
+
+<p>
+If you need to insert instructions while iterating over an existing instruction
+list, you can also use several strategies. The first one is to use a
+ListIterator over the instruction list:
+</p>
+
+<pre>
+ListIterator it = m.instructions.iterator();
+while (it.hasNext()) {
+ AbstractInsnNode n = (AbstractInsnNode) it.next();
+ if (...) {
+ it.add(new VarInsnNode(ALOAD, 0));
+ }
+}
+</pre>
+
+<p>
+It is also possible to convert instruction list into the array and iterate trough
+array elements:
+</p>
+
+<pre>
+AbstractInsnNode[] insns = m.instructions.toArray();
+for(int i = 0; i<insns.length; i++) {
+ AbstractInsnNode n = insns[i];
+ if (...) {
+ m.instructions.insert(n, new VarInsnNode(ALOAD, 0));
+ }
+}
+</pre>
+
+<p>
+If you want to insert these instructions through the MethodVisitor interface,
+you can use another instance of MethodNode as a MethodVisitor and then
+insert instructions collected by that instance into the instruction list.
+For example:
+</p>
+
+<pre>
+AbstractInsnNode[] insns = m.instructions.toArray();
+for(int i = 0; i<insns.length; i++) {
+ AbstractInsnNode n = insns[i];
+ if (...) {
+ MethodNode mn = new MethodNode();
+ mn.visitVarInsn(ALOAD, 0);
+ mn.visitVarInsn(ALOAD, 1);
+ m.instructions.insert(n, mn.instructions);
+ }
+}
+</pre>
+
+<p>
+@since ASM 1.3.3
+</p>
+
+</body>
+</html>
diff --git a/org.mockito/org/mockito/asm/util/ASMifiable.class b/org.mockito/org/mockito/asm/util/ASMifiable.class
new file mode 100644
index 0000000..ee3cd6d
--- /dev/null
+++ b/org.mockito/org/mockito/asm/util/ASMifiable.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/util/ASMifierAbstractVisitor.class b/org.mockito/org/mockito/asm/util/ASMifierAbstractVisitor.class
new file mode 100644
index 0000000..fd5b124
--- /dev/null
+++ b/org.mockito/org/mockito/asm/util/ASMifierAbstractVisitor.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/util/ASMifierAnnotationVisitor.class b/org.mockito/org/mockito/asm/util/ASMifierAnnotationVisitor.class
new file mode 100644
index 0000000..818e304
--- /dev/null
+++ b/org.mockito/org/mockito/asm/util/ASMifierAnnotationVisitor.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/util/ASMifierClassVisitor.class b/org.mockito/org/mockito/asm/util/ASMifierClassVisitor.class
new file mode 100644
index 0000000..d3deab7
--- /dev/null
+++ b/org.mockito/org/mockito/asm/util/ASMifierClassVisitor.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/util/ASMifierFieldVisitor.class b/org.mockito/org/mockito/asm/util/ASMifierFieldVisitor.class
new file mode 100644
index 0000000..4bfef88
--- /dev/null
+++ b/org.mockito/org/mockito/asm/util/ASMifierFieldVisitor.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/util/ASMifierMethodVisitor.class b/org.mockito/org/mockito/asm/util/ASMifierMethodVisitor.class
new file mode 100644
index 0000000..3a85588
--- /dev/null
+++ b/org.mockito/org/mockito/asm/util/ASMifierMethodVisitor.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/util/AbstractVisitor.class b/org.mockito/org/mockito/asm/util/AbstractVisitor.class
new file mode 100644
index 0000000..cb2ce5e
--- /dev/null
+++ b/org.mockito/org/mockito/asm/util/AbstractVisitor.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/util/CheckAnnotationAdapter.class b/org.mockito/org/mockito/asm/util/CheckAnnotationAdapter.class
new file mode 100644
index 0000000..8e2c52e
--- /dev/null
+++ b/org.mockito/org/mockito/asm/util/CheckAnnotationAdapter.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/util/CheckClassAdapter.class b/org.mockito/org/mockito/asm/util/CheckClassAdapter.class
new file mode 100644
index 0000000..e27c2df
--- /dev/null
+++ b/org.mockito/org/mockito/asm/util/CheckClassAdapter.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/util/CheckFieldAdapter.class b/org.mockito/org/mockito/asm/util/CheckFieldAdapter.class
new file mode 100644
index 0000000..2c94b4d
--- /dev/null
+++ b/org.mockito/org/mockito/asm/util/CheckFieldAdapter.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/util/CheckMethodAdapter.class b/org.mockito/org/mockito/asm/util/CheckMethodAdapter.class
new file mode 100644
index 0000000..6e9723d
--- /dev/null
+++ b/org.mockito/org/mockito/asm/util/CheckMethodAdapter.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/util/CheckSignatureAdapter.class b/org.mockito/org/mockito/asm/util/CheckSignatureAdapter.class
new file mode 100644
index 0000000..ec02cd2
--- /dev/null
+++ b/org.mockito/org/mockito/asm/util/CheckSignatureAdapter.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/util/TraceAbstractVisitor.class b/org.mockito/org/mockito/asm/util/TraceAbstractVisitor.class
new file mode 100644
index 0000000..f351a52
--- /dev/null
+++ b/org.mockito/org/mockito/asm/util/TraceAbstractVisitor.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/util/TraceAnnotationVisitor.class b/org.mockito/org/mockito/asm/util/TraceAnnotationVisitor.class
new file mode 100644
index 0000000..76ba4a2
--- /dev/null
+++ b/org.mockito/org/mockito/asm/util/TraceAnnotationVisitor.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/util/TraceClassVisitor.class b/org.mockito/org/mockito/asm/util/TraceClassVisitor.class
new file mode 100644
index 0000000..08ea928
--- /dev/null
+++ b/org.mockito/org/mockito/asm/util/TraceClassVisitor.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/util/TraceFieldVisitor.class b/org.mockito/org/mockito/asm/util/TraceFieldVisitor.class
new file mode 100644
index 0000000..c900b3e
--- /dev/null
+++ b/org.mockito/org/mockito/asm/util/TraceFieldVisitor.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/util/TraceMethodVisitor.class b/org.mockito/org/mockito/asm/util/TraceMethodVisitor.class
new file mode 100644
index 0000000..db95ecb
--- /dev/null
+++ b/org.mockito/org/mockito/asm/util/TraceMethodVisitor.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/util/TraceSignatureVisitor.class b/org.mockito/org/mockito/asm/util/TraceSignatureVisitor.class
new file mode 100644
index 0000000..aae80f8
--- /dev/null
+++ b/org.mockito/org/mockito/asm/util/TraceSignatureVisitor.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/util/Traceable.class b/org.mockito/org/mockito/asm/util/Traceable.class
new file mode 100644
index 0000000..374889d
--- /dev/null
+++ b/org.mockito/org/mockito/asm/util/Traceable.class
Binary files differ
diff --git a/org.mockito/org/mockito/asm/util/package.html b/org.mockito/org/mockito/asm/util/package.html
new file mode 100644
index 0000000..ce91531
--- /dev/null
+++ b/org.mockito/org/mockito/asm/util/package.html
@@ -0,0 +1,40 @@
+<html>
+<!--
+ * ASM: a very small and fast Java bytecode manipulation framework
+ * Copyright (c) 2000-2005 INRIA, France Telecom
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. Neither the name of the copyright holders nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+-->
+<body>
+Provides ASM visitors that can be useful for programming and
+debugging purposes. These class visitors are normally not used by applications
+at runtime. This is why they are bundled in an optional <tt>asm-util.jar</tt>
+library that is separated from (but requires) the <tt>asm.jar</tt> library,
+which contains the core ASM framework.
+
+@since ASM 1.3.2
+</body>
+</html>
diff --git a/org.mockito/org/mockito/cglib/beans/BeanCopier$BeanCopierKey.class b/org.mockito/org/mockito/cglib/beans/BeanCopier$BeanCopierKey.class
new file mode 100644
index 0000000..568e478
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/beans/BeanCopier$BeanCopierKey.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/beans/BeanCopier$Generator.class b/org.mockito/org/mockito/cglib/beans/BeanCopier$Generator.class
new file mode 100644
index 0000000..9eaea63
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/beans/BeanCopier$Generator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/beans/BeanCopier.class b/org.mockito/org/mockito/cglib/beans/BeanCopier.class
new file mode 100644
index 0000000..fb9ac5b
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/beans/BeanCopier.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/beans/BeanGenerator$BeanGeneratorKey.class b/org.mockito/org/mockito/cglib/beans/BeanGenerator$BeanGeneratorKey.class
new file mode 100644
index 0000000..ba4d8f2
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/beans/BeanGenerator$BeanGeneratorKey.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/beans/BeanGenerator.class b/org.mockito/org/mockito/cglib/beans/BeanGenerator.class
new file mode 100644
index 0000000..a7235e5
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/beans/BeanGenerator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/beans/BeanMap$Generator$BeanMapKey.class b/org.mockito/org/mockito/cglib/beans/BeanMap$Generator$BeanMapKey.class
new file mode 100644
index 0000000..46d8dff
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/beans/BeanMap$Generator$BeanMapKey.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/beans/BeanMap$Generator.class b/org.mockito/org/mockito/cglib/beans/BeanMap$Generator.class
new file mode 100644
index 0000000..a817c8e
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/beans/BeanMap$Generator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/beans/BeanMap.class b/org.mockito/org/mockito/cglib/beans/BeanMap.class
new file mode 100644
index 0000000..215182d
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/beans/BeanMap.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/beans/BeanMapEmitter$1.class b/org.mockito/org/mockito/cglib/beans/BeanMapEmitter$1.class
new file mode 100644
index 0000000..0e176aa
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/beans/BeanMapEmitter$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/beans/BeanMapEmitter$2.class b/org.mockito/org/mockito/cglib/beans/BeanMapEmitter$2.class
new file mode 100644
index 0000000..454fcd3
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/beans/BeanMapEmitter$2.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/beans/BeanMapEmitter$3.class b/org.mockito/org/mockito/cglib/beans/BeanMapEmitter$3.class
new file mode 100644
index 0000000..98c0a07
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/beans/BeanMapEmitter$3.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/beans/BeanMapEmitter.class b/org.mockito/org/mockito/cglib/beans/BeanMapEmitter.class
new file mode 100644
index 0000000..3e352f9
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/beans/BeanMapEmitter.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/beans/BulkBean$BulkBeanKey.class b/org.mockito/org/mockito/cglib/beans/BulkBean$BulkBeanKey.class
new file mode 100644
index 0000000..7507b63
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/beans/BulkBean$BulkBeanKey.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/beans/BulkBean$Generator.class b/org.mockito/org/mockito/cglib/beans/BulkBean$Generator.class
new file mode 100644
index 0000000..8cdede8
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/beans/BulkBean$Generator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/beans/BulkBean.class b/org.mockito/org/mockito/cglib/beans/BulkBean.class
new file mode 100644
index 0000000..1786955
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/beans/BulkBean.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/beans/BulkBeanEmitter.class b/org.mockito/org/mockito/cglib/beans/BulkBeanEmitter.class
new file mode 100644
index 0000000..afbfb93
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/beans/BulkBeanEmitter.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/beans/BulkBeanException.class b/org.mockito/org/mockito/cglib/beans/BulkBeanException.class
new file mode 100644
index 0000000..91e5e9f
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/beans/BulkBeanException.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/beans/FixedKeySet.class b/org.mockito/org/mockito/cglib/beans/FixedKeySet.class
new file mode 100644
index 0000000..efd6a93
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/beans/FixedKeySet.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/beans/ImmutableBean$Generator.class b/org.mockito/org/mockito/cglib/beans/ImmutableBean$Generator.class
new file mode 100644
index 0000000..60ecc0b
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/beans/ImmutableBean$Generator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/beans/ImmutableBean.class b/org.mockito/org/mockito/cglib/beans/ImmutableBean.class
new file mode 100644
index 0000000..ef07519
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/beans/ImmutableBean.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/AbstractClassGenerator$1.class b/org.mockito/org/mockito/cglib/core/AbstractClassGenerator$1.class
new file mode 100644
index 0000000..6d059f9
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/AbstractClassGenerator$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/AbstractClassGenerator$Source.class b/org.mockito/org/mockito/cglib/core/AbstractClassGenerator$Source.class
new file mode 100644
index 0000000..f318237
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/AbstractClassGenerator$Source.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/AbstractClassGenerator.class b/org.mockito/org/mockito/cglib/core/AbstractClassGenerator.class
new file mode 100644
index 0000000..fba6868
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/AbstractClassGenerator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/Block.class b/org.mockito/org/mockito/cglib/core/Block.class
new file mode 100644
index 0000000..0b16db4
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/Block.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/ClassEmitter$1.class b/org.mockito/org/mockito/cglib/core/ClassEmitter$1.class
new file mode 100644
index 0000000..7495008
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/ClassEmitter$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/ClassEmitter$2.class b/org.mockito/org/mockito/cglib/core/ClassEmitter$2.class
new file mode 100644
index 0000000..c5f5205
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/ClassEmitter$2.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/ClassEmitter$3.class b/org.mockito/org/mockito/cglib/core/ClassEmitter$3.class
new file mode 100644
index 0000000..8956c06
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/ClassEmitter$3.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/ClassEmitter$FieldInfo.class b/org.mockito/org/mockito/cglib/core/ClassEmitter$FieldInfo.class
new file mode 100644
index 0000000..0019d4d
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/ClassEmitter$FieldInfo.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/ClassEmitter.class b/org.mockito/org/mockito/cglib/core/ClassEmitter.class
new file mode 100644
index 0000000..e88d33f
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/ClassEmitter.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/ClassGenerator.class b/org.mockito/org/mockito/cglib/core/ClassGenerator.class
new file mode 100644
index 0000000..4ea7fa4
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/ClassGenerator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/ClassInfo.class b/org.mockito/org/mockito/cglib/core/ClassInfo.class
new file mode 100644
index 0000000..589b576
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/ClassInfo.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/ClassNameReader$1.class b/org.mockito/org/mockito/cglib/core/ClassNameReader$1.class
new file mode 100644
index 0000000..db92b5e
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/ClassNameReader$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/ClassNameReader$EarlyExitException.class b/org.mockito/org/mockito/cglib/core/ClassNameReader$EarlyExitException.class
new file mode 100644
index 0000000..5004200
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/ClassNameReader$EarlyExitException.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/ClassNameReader.class b/org.mockito/org/mockito/cglib/core/ClassNameReader.class
new file mode 100644
index 0000000..05863d7
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/ClassNameReader.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/ClassesKey$Key.class b/org.mockito/org/mockito/cglib/core/ClassesKey$Key.class
new file mode 100644
index 0000000..fbfc427
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/ClassesKey$Key.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/ClassesKey.class b/org.mockito/org/mockito/cglib/core/ClassesKey.class
new file mode 100644
index 0000000..781dbb5
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/ClassesKey.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/CodeEmitter$State.class b/org.mockito/org/mockito/cglib/core/CodeEmitter$State.class
new file mode 100644
index 0000000..8e66421
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/CodeEmitter$State.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/CodeEmitter.class b/org.mockito/org/mockito/cglib/core/CodeEmitter.class
new file mode 100644
index 0000000..358d365
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/CodeEmitter.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/CodeGenerationException.class b/org.mockito/org/mockito/cglib/core/CodeGenerationException.class
new file mode 100644
index 0000000..b2aa60b
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/CodeGenerationException.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/CollectionUtils.class b/org.mockito/org/mockito/cglib/core/CollectionUtils.class
new file mode 100644
index 0000000..e64c117
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/CollectionUtils.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/Constants.class b/org.mockito/org/mockito/cglib/core/Constants.class
new file mode 100644
index 0000000..f6d086a
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/Constants.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/Converter.class b/org.mockito/org/mockito/cglib/core/Converter.class
new file mode 100644
index 0000000..127baea
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/Converter.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/Customizer.class b/org.mockito/org/mockito/cglib/core/Customizer.class
new file mode 100644
index 0000000..b24fd37
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/Customizer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/DebuggingClassWriter$1.class b/org.mockito/org/mockito/cglib/core/DebuggingClassWriter$1.class
new file mode 100644
index 0000000..854152e
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/DebuggingClassWriter$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/DebuggingClassWriter.class b/org.mockito/org/mockito/cglib/core/DebuggingClassWriter.class
new file mode 100644
index 0000000..70207f9
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/DebuggingClassWriter.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/DefaultGeneratorStrategy.class b/org.mockito/org/mockito/cglib/core/DefaultGeneratorStrategy.class
new file mode 100644
index 0000000..6272b96
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/DefaultGeneratorStrategy.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/DefaultNamingPolicy.class b/org.mockito/org/mockito/cglib/core/DefaultNamingPolicy.class
new file mode 100644
index 0000000..1007579
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/DefaultNamingPolicy.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/DuplicatesPredicate.class b/org.mockito/org/mockito/cglib/core/DuplicatesPredicate.class
new file mode 100644
index 0000000..b7887e7
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/DuplicatesPredicate.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/EmitUtils$1.class b/org.mockito/org/mockito/cglib/core/EmitUtils$1.class
new file mode 100644
index 0000000..8e2dce5
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/EmitUtils$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/EmitUtils$10.class b/org.mockito/org/mockito/cglib/core/EmitUtils$10.class
new file mode 100644
index 0000000..d54f19e
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/EmitUtils$10.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/EmitUtils$11.class b/org.mockito/org/mockito/cglib/core/EmitUtils$11.class
new file mode 100644
index 0000000..0cc36e6
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/EmitUtils$11.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/EmitUtils$12.class b/org.mockito/org/mockito/cglib/core/EmitUtils$12.class
new file mode 100644
index 0000000..4c511c7
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/EmitUtils$12.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/EmitUtils$13.class b/org.mockito/org/mockito/cglib/core/EmitUtils$13.class
new file mode 100644
index 0000000..53ed6a8
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/EmitUtils$13.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/EmitUtils$14.class b/org.mockito/org/mockito/cglib/core/EmitUtils$14.class
new file mode 100644
index 0000000..1740597
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/EmitUtils$14.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/EmitUtils$15.class b/org.mockito/org/mockito/cglib/core/EmitUtils$15.class
new file mode 100644
index 0000000..716ca94
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/EmitUtils$15.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/EmitUtils$16.class b/org.mockito/org/mockito/cglib/core/EmitUtils$16.class
new file mode 100644
index 0000000..1eee6cb
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/EmitUtils$16.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/EmitUtils$2.class b/org.mockito/org/mockito/cglib/core/EmitUtils$2.class
new file mode 100644
index 0000000..f5975e5
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/EmitUtils$2.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/EmitUtils$3.class b/org.mockito/org/mockito/cglib/core/EmitUtils$3.class
new file mode 100644
index 0000000..9e0d03b
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/EmitUtils$3.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/EmitUtils$4.class b/org.mockito/org/mockito/cglib/core/EmitUtils$4.class
new file mode 100644
index 0000000..749edd5
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/EmitUtils$4.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/EmitUtils$5.class b/org.mockito/org/mockito/cglib/core/EmitUtils$5.class
new file mode 100644
index 0000000..a611ba6
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/EmitUtils$5.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/EmitUtils$6.class b/org.mockito/org/mockito/cglib/core/EmitUtils$6.class
new file mode 100644
index 0000000..74ab14a
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/EmitUtils$6.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/EmitUtils$7.class b/org.mockito/org/mockito/cglib/core/EmitUtils$7.class
new file mode 100644
index 0000000..d2d05a3
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/EmitUtils$7.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/EmitUtils$8.class b/org.mockito/org/mockito/cglib/core/EmitUtils$8.class
new file mode 100644
index 0000000..fd94204
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/EmitUtils$8.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/EmitUtils$9.class b/org.mockito/org/mockito/cglib/core/EmitUtils$9.class
new file mode 100644
index 0000000..828c515
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/EmitUtils$9.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/EmitUtils$ArrayDelimiters.class b/org.mockito/org/mockito/cglib/core/EmitUtils$ArrayDelimiters.class
new file mode 100644
index 0000000..3c5bded
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/EmitUtils$ArrayDelimiters.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/EmitUtils$ParameterTyper.class b/org.mockito/org/mockito/cglib/core/EmitUtils$ParameterTyper.class
new file mode 100644
index 0000000..fc235c5
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/EmitUtils$ParameterTyper.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/EmitUtils.class b/org.mockito/org/mockito/cglib/core/EmitUtils.class
new file mode 100644
index 0000000..89133a7
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/EmitUtils.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/GeneratorStrategy.class b/org.mockito/org/mockito/cglib/core/GeneratorStrategy.class
new file mode 100644
index 0000000..7c44955
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/GeneratorStrategy.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/KeyFactory$1.class b/org.mockito/org/mockito/cglib/core/KeyFactory$1.class
new file mode 100644
index 0000000..1802dac
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/KeyFactory$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/KeyFactory$2.class b/org.mockito/org/mockito/cglib/core/KeyFactory$2.class
new file mode 100644
index 0000000..6a81a28
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/KeyFactory$2.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/KeyFactory$Generator.class b/org.mockito/org/mockito/cglib/core/KeyFactory$Generator.class
new file mode 100644
index 0000000..8fd5601
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/KeyFactory$Generator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/KeyFactory.class b/org.mockito/org/mockito/cglib/core/KeyFactory.class
new file mode 100644
index 0000000..8bf46ca
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/KeyFactory.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/Local.class b/org.mockito/org/mockito/cglib/core/Local.class
new file mode 100644
index 0000000..166fcf2
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/Local.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/LocalVariablesSorter$1.class b/org.mockito/org/mockito/cglib/core/LocalVariablesSorter$1.class
new file mode 100644
index 0000000..be3dab0
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/LocalVariablesSorter$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/LocalVariablesSorter$State.class b/org.mockito/org/mockito/cglib/core/LocalVariablesSorter$State.class
new file mode 100644
index 0000000..50f0792
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/LocalVariablesSorter$State.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/LocalVariablesSorter.class b/org.mockito/org/mockito/cglib/core/LocalVariablesSorter.class
new file mode 100644
index 0000000..29e1be0
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/LocalVariablesSorter.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/MethodInfo.class b/org.mockito/org/mockito/cglib/core/MethodInfo.class
new file mode 100644
index 0000000..5700009
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/MethodInfo.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/MethodInfoTransformer.class b/org.mockito/org/mockito/cglib/core/MethodInfoTransformer.class
new file mode 100644
index 0000000..be7f31e
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/MethodInfoTransformer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/MethodWrapper$MethodWrapperKey.class b/org.mockito/org/mockito/cglib/core/MethodWrapper$MethodWrapperKey.class
new file mode 100644
index 0000000..900802e
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/MethodWrapper$MethodWrapperKey.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/MethodWrapper.class b/org.mockito/org/mockito/cglib/core/MethodWrapper.class
new file mode 100644
index 0000000..08a94db
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/MethodWrapper.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/NamingPolicy.class b/org.mockito/org/mockito/cglib/core/NamingPolicy.class
new file mode 100644
index 0000000..398d84a
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/NamingPolicy.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/ObjectSwitchCallback.class b/org.mockito/org/mockito/cglib/core/ObjectSwitchCallback.class
new file mode 100644
index 0000000..36a13ab
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/ObjectSwitchCallback.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/Predicate.class b/org.mockito/org/mockito/cglib/core/Predicate.class
new file mode 100644
index 0000000..36f8eb1
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/Predicate.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/ProcessArrayCallback.class b/org.mockito/org/mockito/cglib/core/ProcessArrayCallback.class
new file mode 100644
index 0000000..67f6375
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/ProcessArrayCallback.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/ProcessSwitchCallback.class b/org.mockito/org/mockito/cglib/core/ProcessSwitchCallback.class
new file mode 100644
index 0000000..a499bd0
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/ProcessSwitchCallback.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/ReflectUtils$1.class b/org.mockito/org/mockito/cglib/core/ReflectUtils$1.class
new file mode 100644
index 0000000..6780d37
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/ReflectUtils$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/ReflectUtils$2.class b/org.mockito/org/mockito/cglib/core/ReflectUtils$2.class
new file mode 100644
index 0000000..d73f6bd
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/ReflectUtils$2.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/ReflectUtils$3.class b/org.mockito/org/mockito/cglib/core/ReflectUtils$3.class
new file mode 100644
index 0000000..fa152c4
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/ReflectUtils$3.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/ReflectUtils$4.class b/org.mockito/org/mockito/cglib/core/ReflectUtils$4.class
new file mode 100644
index 0000000..9027e63
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/ReflectUtils$4.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/ReflectUtils.class b/org.mockito/org/mockito/cglib/core/ReflectUtils.class
new file mode 100644
index 0000000..b7aca19
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/ReflectUtils.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/RejectModifierPredicate.class b/org.mockito/org/mockito/cglib/core/RejectModifierPredicate.class
new file mode 100644
index 0000000..4b36979
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/RejectModifierPredicate.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/Signature.class b/org.mockito/org/mockito/cglib/core/Signature.class
new file mode 100644
index 0000000..294ccc2
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/Signature.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/TinyBitSet.class b/org.mockito/org/mockito/cglib/core/TinyBitSet.class
new file mode 100644
index 0000000..8925d4a
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/TinyBitSet.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/Transformer.class b/org.mockito/org/mockito/cglib/core/Transformer.class
new file mode 100644
index 0000000..b86a16f
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/Transformer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/TypeUtils.class b/org.mockito/org/mockito/cglib/core/TypeUtils.class
new file mode 100644
index 0000000..9853b96
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/TypeUtils.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/core/VisibilityPredicate.class b/org.mockito/org/mockito/cglib/core/VisibilityPredicate.class
new file mode 100644
index 0000000..bd46678
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/core/VisibilityPredicate.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/Callback.class b/org.mockito/org/mockito/cglib/proxy/Callback.class
new file mode 100644
index 0000000..dac9ed8
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/Callback.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/CallbackFilter.class b/org.mockito/org/mockito/cglib/proxy/CallbackFilter.class
new file mode 100644
index 0000000..861a03d
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/CallbackFilter.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/CallbackGenerator$Context.class b/org.mockito/org/mockito/cglib/proxy/CallbackGenerator$Context.class
new file mode 100644
index 0000000..582bbef
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/CallbackGenerator$Context.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/CallbackGenerator.class b/org.mockito/org/mockito/cglib/proxy/CallbackGenerator.class
new file mode 100644
index 0000000..334a67a
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/CallbackGenerator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/CallbackHelper.class b/org.mockito/org/mockito/cglib/proxy/CallbackHelper.class
new file mode 100644
index 0000000..8b42dfe
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/CallbackHelper.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/CallbackInfo.class b/org.mockito/org/mockito/cglib/proxy/CallbackInfo.class
new file mode 100644
index 0000000..1a18024
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/CallbackInfo.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/Dispatcher.class b/org.mockito/org/mockito/cglib/proxy/Dispatcher.class
new file mode 100644
index 0000000..c0f70af
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/Dispatcher.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/DispatcherGenerator.class b/org.mockito/org/mockito/cglib/proxy/DispatcherGenerator.class
new file mode 100644
index 0000000..181ff1f
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/DispatcherGenerator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/Enhancer$1.class b/org.mockito/org/mockito/cglib/proxy/Enhancer$1.class
new file mode 100644
index 0000000..dbaa585
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/Enhancer$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/Enhancer$2.class b/org.mockito/org/mockito/cglib/proxy/Enhancer$2.class
new file mode 100644
index 0000000..4cec92a
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/Enhancer$2.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/Enhancer$3.class b/org.mockito/org/mockito/cglib/proxy/Enhancer$3.class
new file mode 100644
index 0000000..15366bc
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/Enhancer$3.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/Enhancer$4.class b/org.mockito/org/mockito/cglib/proxy/Enhancer$4.class
new file mode 100644
index 0000000..31037e0
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/Enhancer$4.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/Enhancer$5.class b/org.mockito/org/mockito/cglib/proxy/Enhancer$5.class
new file mode 100644
index 0000000..415c16c
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/Enhancer$5.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/Enhancer$6.class b/org.mockito/org/mockito/cglib/proxy/Enhancer$6.class
new file mode 100644
index 0000000..1686145
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/Enhancer$6.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/Enhancer$EnhancerKey.class b/org.mockito/org/mockito/cglib/proxy/Enhancer$EnhancerKey.class
new file mode 100644
index 0000000..bffecaf
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/Enhancer$EnhancerKey.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/Enhancer.class b/org.mockito/org/mockito/cglib/proxy/Enhancer.class
new file mode 100644
index 0000000..e414bf5
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/Enhancer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/Factory.class b/org.mockito/org/mockito/cglib/proxy/Factory.class
new file mode 100644
index 0000000..129db0c
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/Factory.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/FixedValue.class b/org.mockito/org/mockito/cglib/proxy/FixedValue.class
new file mode 100644
index 0000000..1fe5dd5
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/FixedValue.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/FixedValueGenerator.class b/org.mockito/org/mockito/cglib/proxy/FixedValueGenerator.class
new file mode 100644
index 0000000..ad96738
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/FixedValueGenerator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/InterfaceMaker.class b/org.mockito/org/mockito/cglib/proxy/InterfaceMaker.class
new file mode 100644
index 0000000..a735c34
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/InterfaceMaker.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/InvocationHandler.class b/org.mockito/org/mockito/cglib/proxy/InvocationHandler.class
new file mode 100644
index 0000000..4d6f178
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/InvocationHandler.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/InvocationHandlerGenerator.class b/org.mockito/org/mockito/cglib/proxy/InvocationHandlerGenerator.class
new file mode 100644
index 0000000..6773be1
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/InvocationHandlerGenerator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/LazyLoader.class b/org.mockito/org/mockito/cglib/proxy/LazyLoader.class
new file mode 100644
index 0000000..c216754
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/LazyLoader.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/LazyLoaderGenerator.class b/org.mockito/org/mockito/cglib/proxy/LazyLoaderGenerator.class
new file mode 100644
index 0000000..1432c9a
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/LazyLoaderGenerator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/MethodInterceptor.class b/org.mockito/org/mockito/cglib/proxy/MethodInterceptor.class
new file mode 100644
index 0000000..a0afb9f
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/MethodInterceptor.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/MethodInterceptorGenerator$1.class b/org.mockito/org/mockito/cglib/proxy/MethodInterceptorGenerator$1.class
new file mode 100644
index 0000000..10e7fe6
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/MethodInterceptorGenerator$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/MethodInterceptorGenerator$2.class b/org.mockito/org/mockito/cglib/proxy/MethodInterceptorGenerator$2.class
new file mode 100644
index 0000000..c91c9d7
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/MethodInterceptorGenerator$2.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/MethodInterceptorGenerator.class b/org.mockito/org/mockito/cglib/proxy/MethodInterceptorGenerator.class
new file mode 100644
index 0000000..12ddb87
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/MethodInterceptorGenerator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/MethodProxy$1.class b/org.mockito/org/mockito/cglib/proxy/MethodProxy$1.class
new file mode 100644
index 0000000..c264b9a
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/MethodProxy$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/MethodProxy$CreateInfo.class b/org.mockito/org/mockito/cglib/proxy/MethodProxy$CreateInfo.class
new file mode 100644
index 0000000..57837e5
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/MethodProxy$CreateInfo.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/MethodProxy$FastClassInfo.class b/org.mockito/org/mockito/cglib/proxy/MethodProxy$FastClassInfo.class
new file mode 100644
index 0000000..b250351
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/MethodProxy$FastClassInfo.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/MethodProxy.class b/org.mockito/org/mockito/cglib/proxy/MethodProxy.class
new file mode 100644
index 0000000..0ea4d8c
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/MethodProxy.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/Mixin$Generator.class b/org.mockito/org/mockito/cglib/proxy/Mixin$Generator.class
new file mode 100644
index 0000000..64ada9e
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/Mixin$Generator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/Mixin$MixinKey.class b/org.mockito/org/mockito/cglib/proxy/Mixin$MixinKey.class
new file mode 100644
index 0000000..63b3abf
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/Mixin$MixinKey.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/Mixin$Route.class b/org.mockito/org/mockito/cglib/proxy/Mixin$Route.class
new file mode 100644
index 0000000..569862d
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/Mixin$Route.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/Mixin.class b/org.mockito/org/mockito/cglib/proxy/Mixin.class
new file mode 100644
index 0000000..82e4902
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/Mixin.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/MixinBeanEmitter.class b/org.mockito/org/mockito/cglib/proxy/MixinBeanEmitter.class
new file mode 100644
index 0000000..a6cee97
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/MixinBeanEmitter.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/MixinEmitter.class b/org.mockito/org/mockito/cglib/proxy/MixinEmitter.class
new file mode 100644
index 0000000..7eb362a
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/MixinEmitter.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/MixinEverythingEmitter.class b/org.mockito/org/mockito/cglib/proxy/MixinEverythingEmitter.class
new file mode 100644
index 0000000..c955dff
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/MixinEverythingEmitter.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/NoOp$1.class b/org.mockito/org/mockito/cglib/proxy/NoOp$1.class
new file mode 100644
index 0000000..39bc17e
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/NoOp$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/NoOp.class b/org.mockito/org/mockito/cglib/proxy/NoOp.class
new file mode 100644
index 0000000..de5b810
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/NoOp.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/NoOpGenerator.class b/org.mockito/org/mockito/cglib/proxy/NoOpGenerator.class
new file mode 100644
index 0000000..3bbb14f
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/NoOpGenerator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/Proxy$1.class b/org.mockito/org/mockito/cglib/proxy/Proxy$1.class
new file mode 100644
index 0000000..310d027
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/Proxy$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/Proxy$ProxyImpl.class b/org.mockito/org/mockito/cglib/proxy/Proxy$ProxyImpl.class
new file mode 100644
index 0000000..0dcbb7f
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/Proxy$ProxyImpl.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/Proxy.class b/org.mockito/org/mockito/cglib/proxy/Proxy.class
new file mode 100644
index 0000000..d949a2c
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/Proxy.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/ProxyRefDispatcher.class b/org.mockito/org/mockito/cglib/proxy/ProxyRefDispatcher.class
new file mode 100644
index 0000000..19e4fb4
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/ProxyRefDispatcher.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/proxy/UndeclaredThrowableException.class b/org.mockito/org/mockito/cglib/proxy/UndeclaredThrowableException.class
new file mode 100644
index 0000000..5a9dd0f
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/proxy/UndeclaredThrowableException.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/reflect/ConstructorDelegate$ConstructorKey.class b/org.mockito/org/mockito/cglib/reflect/ConstructorDelegate$ConstructorKey.class
new file mode 100644
index 0000000..0fc1280
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/reflect/ConstructorDelegate$ConstructorKey.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/reflect/ConstructorDelegate$Generator.class b/org.mockito/org/mockito/cglib/reflect/ConstructorDelegate$Generator.class
new file mode 100644
index 0000000..63c6aeb
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/reflect/ConstructorDelegate$Generator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/reflect/ConstructorDelegate.class b/org.mockito/org/mockito/cglib/reflect/ConstructorDelegate.class
new file mode 100644
index 0000000..2842ef6
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/reflect/ConstructorDelegate.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/reflect/FastClass$Generator.class b/org.mockito/org/mockito/cglib/reflect/FastClass$Generator.class
new file mode 100644
index 0000000..91ca081
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/reflect/FastClass$Generator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/reflect/FastClass.class b/org.mockito/org/mockito/cglib/reflect/FastClass.class
new file mode 100644
index 0000000..493c78b
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/reflect/FastClass.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/reflect/FastClassEmitter$1.class b/org.mockito/org/mockito/cglib/reflect/FastClassEmitter$1.class
new file mode 100644
index 0000000..1b0ff04
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/reflect/FastClassEmitter$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/reflect/FastClassEmitter$2.class b/org.mockito/org/mockito/cglib/reflect/FastClassEmitter$2.class
new file mode 100644
index 0000000..9187484
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/reflect/FastClassEmitter$2.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/reflect/FastClassEmitter$3.class b/org.mockito/org/mockito/cglib/reflect/FastClassEmitter$3.class
new file mode 100644
index 0000000..6074cf8
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/reflect/FastClassEmitter$3.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/reflect/FastClassEmitter$4.class b/org.mockito/org/mockito/cglib/reflect/FastClassEmitter$4.class
new file mode 100644
index 0000000..362f0b7
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/reflect/FastClassEmitter$4.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/reflect/FastClassEmitter$GetIndexCallback.class b/org.mockito/org/mockito/cglib/reflect/FastClassEmitter$GetIndexCallback.class
new file mode 100644
index 0000000..cc21a74
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/reflect/FastClassEmitter$GetIndexCallback.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/reflect/FastClassEmitter.class b/org.mockito/org/mockito/cglib/reflect/FastClassEmitter.class
new file mode 100644
index 0000000..15cf04d
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/reflect/FastClassEmitter.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/reflect/FastConstructor.class b/org.mockito/org/mockito/cglib/reflect/FastConstructor.class
new file mode 100644
index 0000000..8e59128
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/reflect/FastConstructor.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/reflect/FastMember.class b/org.mockito/org/mockito/cglib/reflect/FastMember.class
new file mode 100644
index 0000000..924aa0b
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/reflect/FastMember.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/reflect/FastMethod.class b/org.mockito/org/mockito/cglib/reflect/FastMethod.class
new file mode 100644
index 0000000..2317453
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/reflect/FastMethod.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/reflect/MethodDelegate$Generator.class b/org.mockito/org/mockito/cglib/reflect/MethodDelegate$Generator.class
new file mode 100644
index 0000000..6f3dbd8
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/reflect/MethodDelegate$Generator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/reflect/MethodDelegate$MethodDelegateKey.class b/org.mockito/org/mockito/cglib/reflect/MethodDelegate$MethodDelegateKey.class
new file mode 100644
index 0000000..2e39de1
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/reflect/MethodDelegate$MethodDelegateKey.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/reflect/MethodDelegate.class b/org.mockito/org/mockito/cglib/reflect/MethodDelegate.class
new file mode 100644
index 0000000..3c13342
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/reflect/MethodDelegate.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/reflect/MulticastDelegate$Generator$1.class b/org.mockito/org/mockito/cglib/reflect/MulticastDelegate$Generator$1.class
new file mode 100644
index 0000000..0865420
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/reflect/MulticastDelegate$Generator$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/reflect/MulticastDelegate$Generator.class b/org.mockito/org/mockito/cglib/reflect/MulticastDelegate$Generator.class
new file mode 100644
index 0000000..a217ba9
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/reflect/MulticastDelegate$Generator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/reflect/MulticastDelegate.class b/org.mockito/org/mockito/cglib/reflect/MulticastDelegate.class
new file mode 100644
index 0000000..f4164f1
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/reflect/MulticastDelegate.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/AbstractClassFilterTransformer.class b/org.mockito/org/mockito/cglib/transform/AbstractClassFilterTransformer.class
new file mode 100644
index 0000000..f5b0b2a
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/AbstractClassFilterTransformer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/AbstractClassLoader$1.class b/org.mockito/org/mockito/cglib/transform/AbstractClassLoader$1.class
new file mode 100644
index 0000000..2c246d1
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/AbstractClassLoader$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/AbstractClassLoader.class b/org.mockito/org/mockito/cglib/transform/AbstractClassLoader.class
new file mode 100644
index 0000000..45fb441
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/AbstractClassLoader.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/AbstractClassTransformer.class b/org.mockito/org/mockito/cglib/transform/AbstractClassTransformer.class
new file mode 100644
index 0000000..92a1826
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/AbstractClassTransformer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/AbstractProcessTask.class b/org.mockito/org/mockito/cglib/transform/AbstractProcessTask.class
new file mode 100644
index 0000000..b9dbf6b
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/AbstractProcessTask.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/AbstractTransformTask.class b/org.mockito/org/mockito/cglib/transform/AbstractTransformTask.class
new file mode 100644
index 0000000..b8352a7
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/AbstractTransformTask.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/AnnotationVisitorTee.class b/org.mockito/org/mockito/cglib/transform/AnnotationVisitorTee.class
new file mode 100644
index 0000000..d068db4
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/AnnotationVisitorTee.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/ClassEmitterTransformer.class b/org.mockito/org/mockito/cglib/transform/ClassEmitterTransformer.class
new file mode 100644
index 0000000..60c42ae
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/ClassEmitterTransformer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/ClassFilter.class b/org.mockito/org/mockito/cglib/transform/ClassFilter.class
new file mode 100644
index 0000000..4a5ad16
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/ClassFilter.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/ClassFilterTransformer.class b/org.mockito/org/mockito/cglib/transform/ClassFilterTransformer.class
new file mode 100644
index 0000000..d786e70
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/ClassFilterTransformer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/ClassReaderGenerator.class b/org.mockito/org/mockito/cglib/transform/ClassReaderGenerator.class
new file mode 100644
index 0000000..462a06b
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/ClassReaderGenerator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/ClassTransformer.class b/org.mockito/org/mockito/cglib/transform/ClassTransformer.class
new file mode 100644
index 0000000..6c28a3e
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/ClassTransformer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/ClassTransformerChain.class b/org.mockito/org/mockito/cglib/transform/ClassTransformerChain.class
new file mode 100644
index 0000000..0def1af
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/ClassTransformerChain.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/ClassTransformerFactory.class b/org.mockito/org/mockito/cglib/transform/ClassTransformerFactory.class
new file mode 100644
index 0000000..797dfa5
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/ClassTransformerFactory.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/ClassTransformerTee.class b/org.mockito/org/mockito/cglib/transform/ClassTransformerTee.class
new file mode 100644
index 0000000..b7bf8bc
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/ClassTransformerTee.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/ClassVisitorTee.class b/org.mockito/org/mockito/cglib/transform/ClassVisitorTee.class
new file mode 100644
index 0000000..ca3952f
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/ClassVisitorTee.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/FieldVisitorTee.class b/org.mockito/org/mockito/cglib/transform/FieldVisitorTee.class
new file mode 100644
index 0000000..2ea61b6
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/FieldVisitorTee.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/MethodFilter.class b/org.mockito/org/mockito/cglib/transform/MethodFilter.class
new file mode 100644
index 0000000..fc71e53
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/MethodFilter.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/MethodFilterTransformer.class b/org.mockito/org/mockito/cglib/transform/MethodFilterTransformer.class
new file mode 100644
index 0000000..95bdb6a
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/MethodFilterTransformer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/MethodVisitorTee.class b/org.mockito/org/mockito/cglib/transform/MethodVisitorTee.class
new file mode 100644
index 0000000..084f95c
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/MethodVisitorTee.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/TransformingClassGenerator.class b/org.mockito/org/mockito/cglib/transform/TransformingClassGenerator.class
new file mode 100644
index 0000000..42d000e
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/TransformingClassGenerator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/TransformingClassLoader.class b/org.mockito/org/mockito/cglib/transform/TransformingClassLoader.class
new file mode 100644
index 0000000..3ab5dfb
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/TransformingClassLoader.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/AbstractInterceptFieldCallback.class b/org.mockito/org/mockito/cglib/transform/impl/AbstractInterceptFieldCallback.class
new file mode 100644
index 0000000..9dd389e
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/AbstractInterceptFieldCallback.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/AccessFieldTransformer$Callback.class b/org.mockito/org/mockito/cglib/transform/impl/AccessFieldTransformer$Callback.class
new file mode 100644
index 0000000..5893362
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/AccessFieldTransformer$Callback.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/AccessFieldTransformer.class b/org.mockito/org/mockito/cglib/transform/impl/AccessFieldTransformer.class
new file mode 100644
index 0000000..6edf838
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/AccessFieldTransformer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/AddDelegateTransformer$1.class b/org.mockito/org/mockito/cglib/transform/impl/AddDelegateTransformer$1.class
new file mode 100644
index 0000000..f89bda2
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/AddDelegateTransformer$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/AddDelegateTransformer.class b/org.mockito/org/mockito/cglib/transform/impl/AddDelegateTransformer.class
new file mode 100644
index 0000000..7e5a569
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/AddDelegateTransformer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/AddInitTransformer$1.class b/org.mockito/org/mockito/cglib/transform/impl/AddInitTransformer$1.class
new file mode 100644
index 0000000..0a11ddd
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/AddInitTransformer$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/AddInitTransformer.class b/org.mockito/org/mockito/cglib/transform/impl/AddInitTransformer.class
new file mode 100644
index 0000000..528d907
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/AddInitTransformer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/AddPropertyTransformer.class b/org.mockito/org/mockito/cglib/transform/impl/AddPropertyTransformer.class
new file mode 100644
index 0000000..d47a79c
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/AddPropertyTransformer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/AddStaticInitTransformer.class b/org.mockito/org/mockito/cglib/transform/impl/AddStaticInitTransformer.class
new file mode 100644
index 0000000..c9b9644
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/AddStaticInitTransformer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/FieldProvider.class b/org.mockito/org/mockito/cglib/transform/impl/FieldProvider.class
new file mode 100644
index 0000000..af97ac0
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/FieldProvider.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/FieldProviderTransformer$1.class b/org.mockito/org/mockito/cglib/transform/impl/FieldProviderTransformer$1.class
new file mode 100644
index 0000000..3d33a0d
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/FieldProviderTransformer$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/FieldProviderTransformer$2.class b/org.mockito/org/mockito/cglib/transform/impl/FieldProviderTransformer$2.class
new file mode 100644
index 0000000..81207a9
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/FieldProviderTransformer$2.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/FieldProviderTransformer$3.class b/org.mockito/org/mockito/cglib/transform/impl/FieldProviderTransformer$3.class
new file mode 100644
index 0000000..e6bc2c3
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/FieldProviderTransformer$3.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/FieldProviderTransformer$4.class b/org.mockito/org/mockito/cglib/transform/impl/FieldProviderTransformer$4.class
new file mode 100644
index 0000000..7c48832
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/FieldProviderTransformer$4.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/FieldProviderTransformer.class b/org.mockito/org/mockito/cglib/transform/impl/FieldProviderTransformer.class
new file mode 100644
index 0000000..630e359
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/FieldProviderTransformer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/InterceptFieldCallback.class b/org.mockito/org/mockito/cglib/transform/impl/InterceptFieldCallback.class
new file mode 100644
index 0000000..1b77dad
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/InterceptFieldCallback.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/InterceptFieldEnabled.class b/org.mockito/org/mockito/cglib/transform/impl/InterceptFieldEnabled.class
new file mode 100644
index 0000000..acbabed
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/InterceptFieldEnabled.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/InterceptFieldFilter.class b/org.mockito/org/mockito/cglib/transform/impl/InterceptFieldFilter.class
new file mode 100644
index 0000000..904aa0d
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/InterceptFieldFilter.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/InterceptFieldTransformer$1.class b/org.mockito/org/mockito/cglib/transform/impl/InterceptFieldTransformer$1.class
new file mode 100644
index 0000000..5462203
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/InterceptFieldTransformer$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/InterceptFieldTransformer.class b/org.mockito/org/mockito/cglib/transform/impl/InterceptFieldTransformer.class
new file mode 100644
index 0000000..0e052cd
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/InterceptFieldTransformer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/UndeclaredThrowableStrategy$1.class b/org.mockito/org/mockito/cglib/transform/impl/UndeclaredThrowableStrategy$1.class
new file mode 100644
index 0000000..0d1b32f
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/UndeclaredThrowableStrategy$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/UndeclaredThrowableStrategy.class b/org.mockito/org/mockito/cglib/transform/impl/UndeclaredThrowableStrategy.class
new file mode 100644
index 0000000..e067e84
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/UndeclaredThrowableStrategy.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/UndeclaredThrowableTransformer$1.class b/org.mockito/org/mockito/cglib/transform/impl/UndeclaredThrowableTransformer$1.class
new file mode 100644
index 0000000..51de9b7
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/UndeclaredThrowableTransformer$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/transform/impl/UndeclaredThrowableTransformer.class b/org.mockito/org/mockito/cglib/transform/impl/UndeclaredThrowableTransformer.class
new file mode 100644
index 0000000..73c45b5
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/transform/impl/UndeclaredThrowableTransformer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/util/ParallelSorter$ByteComparer.class b/org.mockito/org/mockito/cglib/util/ParallelSorter$ByteComparer.class
new file mode 100644
index 0000000..f3e40b6
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/util/ParallelSorter$ByteComparer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/util/ParallelSorter$ComparatorComparer.class b/org.mockito/org/mockito/cglib/util/ParallelSorter$ComparatorComparer.class
new file mode 100644
index 0000000..407f9fa
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/util/ParallelSorter$ComparatorComparer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/util/ParallelSorter$Comparer.class b/org.mockito/org/mockito/cglib/util/ParallelSorter$Comparer.class
new file mode 100644
index 0000000..110a749
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/util/ParallelSorter$Comparer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/util/ParallelSorter$DoubleComparer.class b/org.mockito/org/mockito/cglib/util/ParallelSorter$DoubleComparer.class
new file mode 100644
index 0000000..a25b4c1
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/util/ParallelSorter$DoubleComparer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/util/ParallelSorter$FloatComparer.class b/org.mockito/org/mockito/cglib/util/ParallelSorter$FloatComparer.class
new file mode 100644
index 0000000..41d1114
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/util/ParallelSorter$FloatComparer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/util/ParallelSorter$Generator.class b/org.mockito/org/mockito/cglib/util/ParallelSorter$Generator.class
new file mode 100644
index 0000000..b77ed35
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/util/ParallelSorter$Generator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/util/ParallelSorter$IntComparer.class b/org.mockito/org/mockito/cglib/util/ParallelSorter$IntComparer.class
new file mode 100644
index 0000000..147eb86
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/util/ParallelSorter$IntComparer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/util/ParallelSorter$LongComparer.class b/org.mockito/org/mockito/cglib/util/ParallelSorter$LongComparer.class
new file mode 100644
index 0000000..2000dfe
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/util/ParallelSorter$LongComparer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/util/ParallelSorter$ObjectComparer.class b/org.mockito/org/mockito/cglib/util/ParallelSorter$ObjectComparer.class
new file mode 100644
index 0000000..b494f86
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/util/ParallelSorter$ObjectComparer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/util/ParallelSorter$ShortComparer.class b/org.mockito/org/mockito/cglib/util/ParallelSorter$ShortComparer.class
new file mode 100644
index 0000000..7b185f0
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/util/ParallelSorter$ShortComparer.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/util/ParallelSorter.class b/org.mockito/org/mockito/cglib/util/ParallelSorter.class
new file mode 100644
index 0000000..bd5c23c
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/util/ParallelSorter.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/util/ParallelSorterEmitter.class b/org.mockito/org/mockito/cglib/util/ParallelSorterEmitter.class
new file mode 100644
index 0000000..005e1d7
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/util/ParallelSorterEmitter.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/util/SorterTemplate.class b/org.mockito/org/mockito/cglib/util/SorterTemplate.class
new file mode 100644
index 0000000..254ccf7
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/util/SorterTemplate.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/util/StringSwitcher$Generator$1.class b/org.mockito/org/mockito/cglib/util/StringSwitcher$Generator$1.class
new file mode 100644
index 0000000..ff9fe4f
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/util/StringSwitcher$Generator$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/util/StringSwitcher$Generator.class b/org.mockito/org/mockito/cglib/util/StringSwitcher$Generator.class
new file mode 100644
index 0000000..763880d
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/util/StringSwitcher$Generator.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/util/StringSwitcher$StringSwitcherKey.class b/org.mockito/org/mockito/cglib/util/StringSwitcher$StringSwitcherKey.class
new file mode 100644
index 0000000..753f9f5
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/util/StringSwitcher$StringSwitcherKey.class
Binary files differ
diff --git a/org.mockito/org/mockito/cglib/util/StringSwitcher.class b/org.mockito/org/mockito/cglib/util/StringSwitcher.class
new file mode 100644
index 0000000..373e768
--- /dev/null
+++ b/org.mockito/org/mockito/cglib/util/StringSwitcher.class
Binary files differ
diff --git a/org.mockito/org/mockito/configuration/AnnotationEngine.class b/org.mockito/org/mockito/configuration/AnnotationEngine.class
new file mode 100644
index 0000000..08cb862
--- /dev/null
+++ b/org.mockito/org/mockito/configuration/AnnotationEngine.class
Binary files differ
diff --git a/org.mockito/org/mockito/configuration/DefaultMockitoConfiguration.class b/org.mockito/org/mockito/configuration/DefaultMockitoConfiguration.class
new file mode 100644
index 0000000..043cf77
--- /dev/null
+++ b/org.mockito/org/mockito/configuration/DefaultMockitoConfiguration.class
Binary files differ
diff --git a/org.mockito/org/mockito/configuration/IMockitoConfiguration.class b/org.mockito/org/mockito/configuration/IMockitoConfiguration.class
new file mode 100644
index 0000000..fae5274
--- /dev/null
+++ b/org.mockito/org/mockito/configuration/IMockitoConfiguration.class
Binary files differ
diff --git a/org.mockito/org/mockito/configuration/package.html b/org.mockito/org/mockito/configuration/package.html
new file mode 100644
index 0000000..23dced4
--- /dev/null
+++ b/org.mockito/org/mockito/configuration/package.html
@@ -0,0 +1,3 @@
+<body>
+Mockito configuration utilities
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/exceptions/Discrepancy.class b/org.mockito/org/mockito/exceptions/Discrepancy.class
new file mode 100644
index 0000000..f604704
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/Discrepancy.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/Pluralizer.class b/org.mockito/org/mockito/exceptions/Pluralizer.class
new file mode 100644
index 0000000..d1fe5aa
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/Pluralizer.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/PrintableInvocation.class b/org.mockito/org/mockito/exceptions/PrintableInvocation.class
new file mode 100644
index 0000000..dcb2fdb
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/PrintableInvocation.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/Reporter.class b/org.mockito/org/mockito/exceptions/Reporter.class
new file mode 100644
index 0000000..1cfb2ed
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/Reporter.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/base/MockitoAssertionError.class b/org.mockito/org/mockito/exceptions/base/MockitoAssertionError.class
new file mode 100644
index 0000000..f991366
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/base/MockitoAssertionError.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/base/MockitoException.class b/org.mockito/org/mockito/exceptions/base/MockitoException.class
new file mode 100644
index 0000000..b0d5d13
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/base/MockitoException.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/base/package.html b/org.mockito/org/mockito/exceptions/base/package.html
new file mode 100644
index 0000000..a3d3269
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/base/package.html
@@ -0,0 +1,3 @@
+<body>
+Base classes for exceptions and errors, stack trace filtering/removing logic.
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/exceptions/misusing/InvalidUseOfMatchersException.class b/org.mockito/org/mockito/exceptions/misusing/InvalidUseOfMatchersException.class
new file mode 100644
index 0000000..684fd1c
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/misusing/InvalidUseOfMatchersException.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/misusing/MissingMethodInvocationException.class b/org.mockito/org/mockito/exceptions/misusing/MissingMethodInvocationException.class
new file mode 100644
index 0000000..1b9e74d
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/misusing/MissingMethodInvocationException.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/misusing/MockitoConfigurationException.class b/org.mockito/org/mockito/exceptions/misusing/MockitoConfigurationException.class
new file mode 100644
index 0000000..4ecf431
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/misusing/MockitoConfigurationException.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/misusing/NotAMockException.class b/org.mockito/org/mockito/exceptions/misusing/NotAMockException.class
new file mode 100644
index 0000000..ae22de4
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/misusing/NotAMockException.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/misusing/NullInsteadOfMockException.class b/org.mockito/org/mockito/exceptions/misusing/NullInsteadOfMockException.class
new file mode 100644
index 0000000..e84c067
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/misusing/NullInsteadOfMockException.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/misusing/UnfinishedStubbingException.class b/org.mockito/org/mockito/exceptions/misusing/UnfinishedStubbingException.class
new file mode 100644
index 0000000..8d2683a
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/misusing/UnfinishedStubbingException.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/misusing/UnfinishedVerificationException.class b/org.mockito/org/mockito/exceptions/misusing/UnfinishedVerificationException.class
new file mode 100644
index 0000000..c2824a4
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/misusing/UnfinishedVerificationException.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/misusing/WrongTypeOfReturnValue.class b/org.mockito/org/mockito/exceptions/misusing/WrongTypeOfReturnValue.class
new file mode 100644
index 0000000..8231428
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/misusing/WrongTypeOfReturnValue.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/misusing/package.html b/org.mockito/org/mockito/exceptions/misusing/package.html
new file mode 100644
index 0000000..2263f81
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/misusing/package.html
@@ -0,0 +1,3 @@
+<body>
+Exceptions thrown when Mockito is misused.
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/exceptions/package.html b/org.mockito/org/mockito/exceptions/package.html
new file mode 100644
index 0000000..2232301
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/package.html
@@ -0,0 +1,3 @@
+<body>
+Exception messages, exception hierarchies.
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/exceptions/verification/ArgumentsAreDifferent.class b/org.mockito/org/mockito/exceptions/verification/ArgumentsAreDifferent.class
new file mode 100644
index 0000000..edfa12b
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/verification/ArgumentsAreDifferent.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/verification/NeverWantedButInvoked.class b/org.mockito/org/mockito/exceptions/verification/NeverWantedButInvoked.class
new file mode 100644
index 0000000..2fb279b
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/verification/NeverWantedButInvoked.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/verification/NoInteractionsWanted.class b/org.mockito/org/mockito/exceptions/verification/NoInteractionsWanted.class
new file mode 100644
index 0000000..dcfe2e8
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/verification/NoInteractionsWanted.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/verification/SmartNullPointerException.class b/org.mockito/org/mockito/exceptions/verification/SmartNullPointerException.class
new file mode 100644
index 0000000..9394548
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/verification/SmartNullPointerException.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/verification/TooLittleActualInvocations.class b/org.mockito/org/mockito/exceptions/verification/TooLittleActualInvocations.class
new file mode 100644
index 0000000..e7636f0
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/verification/TooLittleActualInvocations.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/verification/TooManyActualInvocations.class b/org.mockito/org/mockito/exceptions/verification/TooManyActualInvocations.class
new file mode 100644
index 0000000..db7353c
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/verification/TooManyActualInvocations.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/verification/VerificationInOrderFailure.class b/org.mockito/org/mockito/exceptions/verification/VerificationInOrderFailure.class
new file mode 100644
index 0000000..7591e6b
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/verification/VerificationInOrderFailure.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/verification/WantedButNotInvoked.class b/org.mockito/org/mockito/exceptions/verification/WantedButNotInvoked.class
new file mode 100644
index 0000000..8a03e4e
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/verification/WantedButNotInvoked.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/verification/junit/ArgumentsAreDifferent.class b/org.mockito/org/mockito/exceptions/verification/junit/ArgumentsAreDifferent.class
new file mode 100644
index 0000000..f4a9352
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/verification/junit/ArgumentsAreDifferent.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/verification/junit/JUnitTool.class b/org.mockito/org/mockito/exceptions/verification/junit/JUnitTool.class
new file mode 100644
index 0000000..8fdadc4
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/verification/junit/JUnitTool.class
Binary files differ
diff --git a/org.mockito/org/mockito/exceptions/verification/junit/package.html b/org.mockito/org/mockito/exceptions/verification/junit/package.html
new file mode 100644
index 0000000..5735386
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/verification/junit/package.html
@@ -0,0 +1,3 @@
+<body>
+JUnit integration to provide better support for junit runners in IDEs.
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/exceptions/verification/package.html b/org.mockito/org/mockito/exceptions/verification/package.html
new file mode 100644
index 0000000..79bf778
--- /dev/null
+++ b/org.mockito/org/mockito/exceptions/verification/package.html
@@ -0,0 +1,3 @@
+<body>
+Verification errors.
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/InOrderImpl.class b/org.mockito/org/mockito/internal/InOrderImpl.class
new file mode 100644
index 0000000..e13492a
--- /dev/null
+++ b/org.mockito/org/mockito/internal/InOrderImpl.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/MockHandler.class b/org.mockito/org/mockito/internal/MockHandler.class
new file mode 100644
index 0000000..023ae60
--- /dev/null
+++ b/org.mockito/org/mockito/internal/MockHandler.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/MockHandlerInterface.class b/org.mockito/org/mockito/internal/MockHandlerInterface.class
new file mode 100644
index 0000000..504ffcf
--- /dev/null
+++ b/org.mockito/org/mockito/internal/MockHandlerInterface.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/MockitoCore.class b/org.mockito/org/mockito/internal/MockitoCore.class
new file mode 100644
index 0000000..e98323f
--- /dev/null
+++ b/org.mockito/org/mockito/internal/MockitoCore.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/MockitoInvocationHandler.class b/org.mockito/org/mockito/internal/MockitoInvocationHandler.class
new file mode 100644
index 0000000..86167e8
--- /dev/null
+++ b/org.mockito/org/mockito/internal/MockitoInvocationHandler.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/configuration/ClassPathLoader.class b/org.mockito/org/mockito/internal/configuration/ClassPathLoader.class
new file mode 100644
index 0000000..ba123d2
--- /dev/null
+++ b/org.mockito/org/mockito/internal/configuration/ClassPathLoader.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/configuration/DefaultAnnotationEngine.class b/org.mockito/org/mockito/internal/configuration/DefaultAnnotationEngine.class
new file mode 100644
index 0000000..b555460
--- /dev/null
+++ b/org.mockito/org/mockito/internal/configuration/DefaultAnnotationEngine.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/configuration/DefaultInjectionEngine.class b/org.mockito/org/mockito/internal/configuration/DefaultInjectionEngine.class
new file mode 100644
index 0000000..7300974
--- /dev/null
+++ b/org.mockito/org/mockito/internal/configuration/DefaultInjectionEngine.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/configuration/GlobalConfiguration.class b/org.mockito/org/mockito/internal/configuration/GlobalConfiguration.class
new file mode 100644
index 0000000..5a66422
--- /dev/null
+++ b/org.mockito/org/mockito/internal/configuration/GlobalConfiguration.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/configuration/InjectingAnnotationEngine.class b/org.mockito/org/mockito/internal/configuration/InjectingAnnotationEngine.class
new file mode 100644
index 0000000..7c54891
--- /dev/null
+++ b/org.mockito/org/mockito/internal/configuration/InjectingAnnotationEngine.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/configuration/SpyAnnotationEngine.class b/org.mockito/org/mockito/internal/configuration/SpyAnnotationEngine.class
new file mode 100644
index 0000000..d302cc6
--- /dev/null
+++ b/org.mockito/org/mockito/internal/configuration/SpyAnnotationEngine.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/configuration/package.html b/org.mockito/org/mockito/internal/configuration/package.html
new file mode 100644
index 0000000..e7b89d5
--- /dev/null
+++ b/org.mockito/org/mockito/internal/configuration/package.html
@@ -0,0 +1,3 @@
+<body>
+Mockito configuration
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/creation/AbstractMockitoMethodProxy.class b/org.mockito/org/mockito/internal/creation/AbstractMockitoMethodProxy.class
new file mode 100644
index 0000000..b8411e1
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/AbstractMockitoMethodProxy.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/creation/ClassNameFinder.class b/org.mockito/org/mockito/internal/creation/ClassNameFinder.class
new file mode 100644
index 0000000..497f3cb
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/ClassNameFinder.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/creation/DelegatingMethod.class b/org.mockito/org/mockito/internal/creation/DelegatingMethod.class
new file mode 100644
index 0000000..ffb9d24
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/DelegatingMethod.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/creation/DelegatingMockitoMethodProxy.class b/org.mockito/org/mockito/internal/creation/DelegatingMockitoMethodProxy.class
new file mode 100644
index 0000000..ac361ae
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/DelegatingMockitoMethodProxy.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/creation/MethodInterceptorFilter.class b/org.mockito/org/mockito/internal/creation/MethodInterceptorFilter.class
new file mode 100644
index 0000000..3482d9d
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/MethodInterceptorFilter.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/creation/MockSettingsImpl.class b/org.mockito/org/mockito/internal/creation/MockSettingsImpl.class
new file mode 100644
index 0000000..a7e1e10
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/MockSettingsImpl.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/creation/MockitoMethodProxy.class b/org.mockito/org/mockito/internal/creation/MockitoMethodProxy.class
new file mode 100644
index 0000000..7046438
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/MockitoMethodProxy.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/creation/SerializableMockitoMethodProxy.class b/org.mockito/org/mockito/internal/creation/SerializableMockitoMethodProxy.class
new file mode 100644
index 0000000..1832391
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/SerializableMockitoMethodProxy.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/creation/cglib/CGLIBHacker.class b/org.mockito/org/mockito/internal/creation/cglib/CGLIBHacker.class
new file mode 100644
index 0000000..b77bafc
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/cglib/CGLIBHacker.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/creation/cglib/MockitoNamingPolicy.class b/org.mockito/org/mockito/internal/creation/cglib/MockitoNamingPolicy.class
new file mode 100644
index 0000000..e777b4f
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/cglib/MockitoNamingPolicy.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/creation/cglib/package.html b/org.mockito/org/mockito/internal/creation/cglib/package.html
new file mode 100644
index 0000000..f103960
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/cglib/package.html
@@ -0,0 +1 @@
+<body>CGLIB related stuff</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/creation/jmock/ClassImposterizer$1.class b/org.mockito/org/mockito/internal/creation/jmock/ClassImposterizer$1.class
new file mode 100644
index 0000000..584bd70
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/jmock/ClassImposterizer$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/creation/jmock/ClassImposterizer$2.class b/org.mockito/org/mockito/internal/creation/jmock/ClassImposterizer$2.class
new file mode 100644
index 0000000..9e843f2
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/jmock/ClassImposterizer$2.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/creation/jmock/ClassImposterizer$3.class b/org.mockito/org/mockito/internal/creation/jmock/ClassImposterizer$3.class
new file mode 100644
index 0000000..11d2244
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/jmock/ClassImposterizer$3.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/creation/jmock/ClassImposterizer$ClassWithSuperclassToWorkAroundCglibBug.class b/org.mockito/org/mockito/internal/creation/jmock/ClassImposterizer$ClassWithSuperclassToWorkAroundCglibBug.class
new file mode 100644
index 0000000..669a133
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/jmock/ClassImposterizer$ClassWithSuperclassToWorkAroundCglibBug.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/creation/jmock/ClassImposterizer.class b/org.mockito/org/mockito/internal/creation/jmock/ClassImposterizer.class
new file mode 100644
index 0000000..e2d4bbd
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/jmock/ClassImposterizer.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/creation/jmock/SearchingClassLoader.class b/org.mockito/org/mockito/internal/creation/jmock/SearchingClassLoader.class
new file mode 100644
index 0000000..37ef42d
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/jmock/SearchingClassLoader.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/creation/jmock/SerializableNoOp.class b/org.mockito/org/mockito/internal/creation/jmock/SerializableNoOp.class
new file mode 100644
index 0000000..62249f9
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/jmock/SerializableNoOp.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/creation/jmock/jmock-license.txt b/org.mockito/org/mockito/internal/creation/jmock/jmock-license.txt
new file mode 100644
index 0000000..4c56c9c
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/jmock/jmock-license.txt
@@ -0,0 +1,25 @@
+Copyright (c) 2000-2007, jMock.org
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+Redistributions of source code must retain the above copyright notice, this list of
+conditions and the following disclaimer. Redistributions in binary form must reproduce
+the above copyright notice, this list of conditions and the following disclaimer in
+the documentation and/or other materials provided with the distribution.
+
+Neither the name of jMock nor the names of its contributors may be used to endorse
+or promote products derived from this software without specific prior written
+permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
+EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
+SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
+TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
+WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
+DAMAGE.
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/creation/jmock/package.html b/org.mockito/org/mockito/internal/creation/jmock/package.html
new file mode 100644
index 0000000..6e58669
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/jmock/package.html
@@ -0,0 +1 @@
+<body>Borrowed from jmock codebase</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/creation/package.html b/org.mockito/org/mockito/internal/creation/package.html
new file mode 100644
index 0000000..c2ea0ab
--- /dev/null
+++ b/org.mockito/org/mockito/internal/creation/package.html
@@ -0,0 +1,3 @@
+<body>
+Mock object creation.
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/debugging/FindingsListener.class b/org.mockito/org/mockito/internal/debugging/FindingsListener.class
new file mode 100644
index 0000000..bf17b7d
--- /dev/null
+++ b/org.mockito/org/mockito/internal/debugging/FindingsListener.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/debugging/Localized.class b/org.mockito/org/mockito/internal/debugging/Localized.class
new file mode 100644
index 0000000..e8acd6a
--- /dev/null
+++ b/org.mockito/org/mockito/internal/debugging/Localized.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/debugging/Location.class b/org.mockito/org/mockito/internal/debugging/Location.class
new file mode 100644
index 0000000..c1dd96a
--- /dev/null
+++ b/org.mockito/org/mockito/internal/debugging/Location.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/debugging/LoggingListener.class b/org.mockito/org/mockito/internal/debugging/LoggingListener.class
new file mode 100644
index 0000000..0867524
--- /dev/null
+++ b/org.mockito/org/mockito/internal/debugging/LoggingListener.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/debugging/MockitoDebuggerImpl.class b/org.mockito/org/mockito/internal/debugging/MockitoDebuggerImpl.class
new file mode 100644
index 0000000..26acc9c
--- /dev/null
+++ b/org.mockito/org/mockito/internal/debugging/MockitoDebuggerImpl.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/debugging/WarningsCollector.class b/org.mockito/org/mockito/internal/debugging/WarningsCollector.class
new file mode 100644
index 0000000..50c6866
--- /dev/null
+++ b/org.mockito/org/mockito/internal/debugging/WarningsCollector.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/debugging/WarningsFinder.class b/org.mockito/org/mockito/internal/debugging/WarningsFinder.class
new file mode 100644
index 0000000..5c9ee76
--- /dev/null
+++ b/org.mockito/org/mockito/internal/debugging/WarningsFinder.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/debugging/WarningsPrinterImpl.class b/org.mockito/org/mockito/internal/debugging/WarningsPrinterImpl.class
new file mode 100644
index 0000000..1e26c77
--- /dev/null
+++ b/org.mockito/org/mockito/internal/debugging/WarningsPrinterImpl.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/debugging/package.html b/org.mockito/org/mockito/internal/debugging/package.html
new file mode 100644
index 0000000..26a3ca9
--- /dev/null
+++ b/org.mockito/org/mockito/internal/debugging/package.html
@@ -0,0 +1,3 @@
+<body>
+Whatever helps in debugging failed tests
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/exceptions/ExceptionIncludingMockitoWarnings.class b/org.mockito/org/mockito/internal/exceptions/ExceptionIncludingMockitoWarnings.class
new file mode 100644
index 0000000..655d718
--- /dev/null
+++ b/org.mockito/org/mockito/internal/exceptions/ExceptionIncludingMockitoWarnings.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/exceptions/VerificationAwareInvocation.class b/org.mockito/org/mockito/internal/exceptions/VerificationAwareInvocation.class
new file mode 100644
index 0000000..3813ce5
--- /dev/null
+++ b/org.mockito/org/mockito/internal/exceptions/VerificationAwareInvocation.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/exceptions/base/ConditionalStackTraceFilter.class b/org.mockito/org/mockito/internal/exceptions/base/ConditionalStackTraceFilter.class
new file mode 100644
index 0000000..7fbce85
--- /dev/null
+++ b/org.mockito/org/mockito/internal/exceptions/base/ConditionalStackTraceFilter.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/exceptions/base/StackTraceFilter.class b/org.mockito/org/mockito/internal/exceptions/base/StackTraceFilter.class
new file mode 100644
index 0000000..e3030fc
--- /dev/null
+++ b/org.mockito/org/mockito/internal/exceptions/base/StackTraceFilter.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/exceptions/base/package.html b/org.mockito/org/mockito/internal/exceptions/base/package.html
new file mode 100644
index 0000000..8f0ae68
--- /dev/null
+++ b/org.mockito/org/mockito/internal/exceptions/base/package.html
@@ -0,0 +1,3 @@
+<body>
+internal implementations of exceptions stuff
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/exceptions/util/ScenarioPrinter.class b/org.mockito/org/mockito/internal/exceptions/util/ScenarioPrinter.class
new file mode 100644
index 0000000..8db3550
--- /dev/null
+++ b/org.mockito/org/mockito/internal/exceptions/util/ScenarioPrinter.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/AllInvocationsFinder$1.class b/org.mockito/org/mockito/internal/invocation/AllInvocationsFinder$1.class
new file mode 100644
index 0000000..d59eb4a
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/AllInvocationsFinder$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/AllInvocationsFinder$SequenceNumberComparator.class b/org.mockito/org/mockito/internal/invocation/AllInvocationsFinder$SequenceNumberComparator.class
new file mode 100644
index 0000000..9ce9ae1
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/AllInvocationsFinder$SequenceNumberComparator.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/AllInvocationsFinder.class b/org.mockito/org/mockito/internal/invocation/AllInvocationsFinder.class
new file mode 100644
index 0000000..4ec0ffe
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/AllInvocationsFinder.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/ArgumentsComparator.class b/org.mockito/org/mockito/internal/invocation/ArgumentsComparator.class
new file mode 100644
index 0000000..1baa3c0
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/ArgumentsComparator.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/CapturesArgumensFromInvocation.class b/org.mockito/org/mockito/internal/invocation/CapturesArgumensFromInvocation.class
new file mode 100644
index 0000000..bf6993f
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/CapturesArgumensFromInvocation.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/Invocation.class b/org.mockito/org/mockito/internal/invocation/Invocation.class
new file mode 100644
index 0000000..c986fcd
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/Invocation.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/InvocationMarker.class b/org.mockito/org/mockito/internal/invocation/InvocationMarker.class
new file mode 100644
index 0000000..37dbd4a
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/InvocationMarker.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/InvocationMatcher.class b/org.mockito/org/mockito/internal/invocation/InvocationMatcher.class
new file mode 100644
index 0000000..7d555d0
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/InvocationMatcher.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/InvocationsFinder$1.class b/org.mockito/org/mockito/internal/invocation/InvocationsFinder$1.class
new file mode 100644
index 0000000..7afece0
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/InvocationsFinder$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/InvocationsFinder$RemoveNotMatching.class b/org.mockito/org/mockito/internal/invocation/InvocationsFinder$RemoveNotMatching.class
new file mode 100644
index 0000000..fa82c5b
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/InvocationsFinder$RemoveNotMatching.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/InvocationsFinder$RemoveUnverifiedInOrder.class b/org.mockito/org/mockito/internal/invocation/InvocationsFinder$RemoveUnverifiedInOrder.class
new file mode 100644
index 0000000..fbcfed2
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/InvocationsFinder$RemoveUnverifiedInOrder.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/InvocationsFinder.class b/org.mockito/org/mockito/internal/invocation/InvocationsFinder.class
new file mode 100644
index 0000000..1b65b04
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/InvocationsFinder.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/MatchersBinder.class b/org.mockito/org/mockito/internal/invocation/MatchersBinder.class
new file mode 100644
index 0000000..88c3e7b
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/MatchersBinder.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/MockitoMethod.class b/org.mockito/org/mockito/internal/invocation/MockitoMethod.class
new file mode 100644
index 0000000..35feee2
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/MockitoMethod.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/SerializableMethod.class b/org.mockito/org/mockito/internal/invocation/SerializableMethod.class
new file mode 100644
index 0000000..0e9e35e
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/SerializableMethod.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/StubInfo.class b/org.mockito/org/mockito/internal/invocation/StubInfo.class
new file mode 100644
index 0000000..18a7f5c
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/StubInfo.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/UnusedStubsFinder.class b/org.mockito/org/mockito/internal/invocation/UnusedStubsFinder.class
new file mode 100644
index 0000000..37c02a2
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/UnusedStubsFinder.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/package.html b/org.mockito/org/mockito/internal/invocation/package.html
new file mode 100644
index 0000000..8e2e7d1
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/package.html
@@ -0,0 +1,3 @@
+<body>
+Invocation and related classes.
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/invocation/realmethod/CGLIBProxyRealMethod.class b/org.mockito/org/mockito/internal/invocation/realmethod/CGLIBProxyRealMethod.class
new file mode 100644
index 0000000..b03373a
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/realmethod/CGLIBProxyRealMethod.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/realmethod/FilteredCGLIBProxyRealMethod.class b/org.mockito/org/mockito/internal/invocation/realmethod/FilteredCGLIBProxyRealMethod.class
new file mode 100644
index 0000000..010ebf1
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/realmethod/FilteredCGLIBProxyRealMethod.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/realmethod/HasCGLIBMethodProxy.class b/org.mockito/org/mockito/internal/invocation/realmethod/HasCGLIBMethodProxy.class
new file mode 100644
index 0000000..0a8e6dc
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/realmethod/HasCGLIBMethodProxy.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/realmethod/RealMethod.class b/org.mockito/org/mockito/internal/invocation/realmethod/RealMethod.class
new file mode 100644
index 0000000..c1a86e2
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/realmethod/RealMethod.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/invocation/realmethod/package.html b/org.mockito/org/mockito/internal/invocation/realmethod/package.html
new file mode 100644
index 0000000..8802312
--- /dev/null
+++ b/org.mockito/org/mockito/internal/invocation/realmethod/package.html
@@ -0,0 +1,3 @@
+<body>
+implementations of real method calls
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/listeners/CollectCreatedMocks.class b/org.mockito/org/mockito/internal/listeners/CollectCreatedMocks.class
new file mode 100644
index 0000000..c77a210
--- /dev/null
+++ b/org.mockito/org/mockito/internal/listeners/CollectCreatedMocks.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/listeners/MockingProgressListener.class b/org.mockito/org/mockito/internal/listeners/MockingProgressListener.class
new file mode 100644
index 0000000..0372165
--- /dev/null
+++ b/org.mockito/org/mockito/internal/listeners/MockingProgressListener.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/listeners/MockingStartedListener.class b/org.mockito/org/mockito/internal/listeners/MockingStartedListener.class
new file mode 100644
index 0000000..07780f9
--- /dev/null
+++ b/org.mockito/org/mockito/internal/listeners/MockingStartedListener.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/And.class b/org.mockito/org/mockito/internal/matchers/And.class
new file mode 100644
index 0000000..4ea59f9
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/And.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/Any.class b/org.mockito/org/mockito/internal/matchers/Any.class
new file mode 100644
index 0000000..dae1653
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/Any.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/AnyVararg.class b/org.mockito/org/mockito/internal/matchers/AnyVararg.class
new file mode 100644
index 0000000..02c8301
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/AnyVararg.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/ArrayEquals.class b/org.mockito/org/mockito/internal/matchers/ArrayEquals.class
new file mode 100644
index 0000000..603c617
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/ArrayEquals.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/CapturesArguments.class b/org.mockito/org/mockito/internal/matchers/CapturesArguments.class
new file mode 100644
index 0000000..811d520
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/CapturesArguments.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/CapturingMatcher.class b/org.mockito/org/mockito/internal/matchers/CapturingMatcher.class
new file mode 100644
index 0000000..ddf9f6a
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/CapturingMatcher.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/CompareEqual.class b/org.mockito/org/mockito/internal/matchers/CompareEqual.class
new file mode 100644
index 0000000..cc2deb2
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/CompareEqual.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/CompareTo.class b/org.mockito/org/mockito/internal/matchers/CompareTo.class
new file mode 100644
index 0000000..cf58cec
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/CompareTo.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/Contains.class b/org.mockito/org/mockito/internal/matchers/Contains.class
new file mode 100644
index 0000000..9ae9a34
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/Contains.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/ContainsExtraTypeInformation.class b/org.mockito/org/mockito/internal/matchers/ContainsExtraTypeInformation.class
new file mode 100644
index 0000000..c5831c6
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/ContainsExtraTypeInformation.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/EndsWith.class b/org.mockito/org/mockito/internal/matchers/EndsWith.class
new file mode 100644
index 0000000..dd1b8a9
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/EndsWith.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/Equality.class b/org.mockito/org/mockito/internal/matchers/Equality.class
new file mode 100644
index 0000000..2a84bfc
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/Equality.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/Equals$1.class b/org.mockito/org/mockito/internal/matchers/Equals$1.class
new file mode 100644
index 0000000..2ee650a
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/Equals$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/Equals.class b/org.mockito/org/mockito/internal/matchers/Equals.class
new file mode 100644
index 0000000..8ccd2ae
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/Equals.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/EqualsWithDelta.class b/org.mockito/org/mockito/internal/matchers/EqualsWithDelta.class
new file mode 100644
index 0000000..1545abb
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/EqualsWithDelta.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/Find.class b/org.mockito/org/mockito/internal/matchers/Find.class
new file mode 100644
index 0000000..7f4bd88
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/Find.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/GreaterOrEqual.class b/org.mockito/org/mockito/internal/matchers/GreaterOrEqual.class
new file mode 100644
index 0000000..04f8e4c
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/GreaterOrEqual.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/GreaterThan.class b/org.mockito/org/mockito/internal/matchers/GreaterThan.class
new file mode 100644
index 0000000..198bc09
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/GreaterThan.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/InstanceOf.class b/org.mockito/org/mockito/internal/matchers/InstanceOf.class
new file mode 100644
index 0000000..b088339
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/InstanceOf.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/LessOrEqual.class b/org.mockito/org/mockito/internal/matchers/LessOrEqual.class
new file mode 100644
index 0000000..7b91694
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/LessOrEqual.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/LessThan.class b/org.mockito/org/mockito/internal/matchers/LessThan.class
new file mode 100644
index 0000000..3c67bc6
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/LessThan.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/LocalizedMatcher.class b/org.mockito/org/mockito/internal/matchers/LocalizedMatcher.class
new file mode 100644
index 0000000..a21e4e4
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/LocalizedMatcher.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/MatcherDecorator.class b/org.mockito/org/mockito/internal/matchers/MatcherDecorator.class
new file mode 100644
index 0000000..6f57bcc
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/MatcherDecorator.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/MatchersPrinter.class b/org.mockito/org/mockito/internal/matchers/MatchersPrinter.class
new file mode 100644
index 0000000..d0c55a5
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/MatchersPrinter.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/Matches.class b/org.mockito/org/mockito/internal/matchers/Matches.class
new file mode 100644
index 0000000..676be37
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/Matches.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/Not.class b/org.mockito/org/mockito/internal/matchers/Not.class
new file mode 100644
index 0000000..b9fe971
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/Not.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/NotNull.class b/org.mockito/org/mockito/internal/matchers/NotNull.class
new file mode 100644
index 0000000..1f277ef
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/NotNull.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/Null.class b/org.mockito/org/mockito/internal/matchers/Null.class
new file mode 100644
index 0000000..3534129
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/Null.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/Or.class b/org.mockito/org/mockito/internal/matchers/Or.class
new file mode 100644
index 0000000..a1a9099
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/Or.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/Same.class b/org.mockito/org/mockito/internal/matchers/Same.class
new file mode 100644
index 0000000..1217363
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/Same.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/StartsWith.class b/org.mockito/org/mockito/internal/matchers/StartsWith.class
new file mode 100644
index 0000000..18f5261
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/StartsWith.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/VarargMatcher.class b/org.mockito/org/mockito/internal/matchers/VarargMatcher.class
new file mode 100644
index 0000000..da75d83
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/VarargMatcher.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/apachecommons/EqualsBuilder.class b/org.mockito/org/mockito/internal/matchers/apachecommons/EqualsBuilder.class
new file mode 100644
index 0000000..eaf0408
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/apachecommons/EqualsBuilder.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/apachecommons/ReflectionEquals.class b/org.mockito/org/mockito/internal/matchers/apachecommons/ReflectionEquals.class
new file mode 100644
index 0000000..131ca9a
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/apachecommons/ReflectionEquals.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/matchers/apachecommons/commons-lang-license.txt b/org.mockito/org/mockito/internal/matchers/apachecommons/commons-lang-license.txt
new file mode 100644
index 0000000..753842b
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/apachecommons/commons-lang-license.txt
@@ -0,0 +1,201 @@
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/matchers/apachecommons/package.html b/org.mockito/org/mockito/internal/matchers/apachecommons/package.html
new file mode 100644
index 0000000..013a05c
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/apachecommons/package.html
@@ -0,0 +1,3 @@
+<body>
+Argument matchers that use Apache Commons Lang reflection-equality.
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/matchers/package.html b/org.mockito/org/mockito/internal/matchers/package.html
new file mode 100644
index 0000000..4ee3cb0
--- /dev/null
+++ b/org.mockito/org/mockito/internal/matchers/package.html
@@ -0,0 +1,3 @@
+<body>
+Argument matchers for verification and stubbing.
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/package.html b/org.mockito/org/mockito/internal/package.html
new file mode 100644
index 0000000..d6bb955
--- /dev/null
+++ b/org.mockito/org/mockito/internal/package.html
@@ -0,0 +1,3 @@
+<body>
+Internal classes, not to be used by clients.
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/progress/ArgumentMatcherStorage.class b/org.mockito/org/mockito/internal/progress/ArgumentMatcherStorage.class
new file mode 100644
index 0000000..b1bb9c2
--- /dev/null
+++ b/org.mockito/org/mockito/internal/progress/ArgumentMatcherStorage.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/progress/ArgumentMatcherStorageImpl.class b/org.mockito/org/mockito/internal/progress/ArgumentMatcherStorageImpl.class
new file mode 100644
index 0000000..821d02e
--- /dev/null
+++ b/org.mockito/org/mockito/internal/progress/ArgumentMatcherStorageImpl.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/progress/HandyReturnValues.class b/org.mockito/org/mockito/internal/progress/HandyReturnValues.class
new file mode 100644
index 0000000..65169a6
--- /dev/null
+++ b/org.mockito/org/mockito/internal/progress/HandyReturnValues.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/progress/IOngoingStubbing.class b/org.mockito/org/mockito/internal/progress/IOngoingStubbing.class
new file mode 100644
index 0000000..1306c33
--- /dev/null
+++ b/org.mockito/org/mockito/internal/progress/IOngoingStubbing.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/progress/MockingProgress.class b/org.mockito/org/mockito/internal/progress/MockingProgress.class
new file mode 100644
index 0000000..3fb72d4
--- /dev/null
+++ b/org.mockito/org/mockito/internal/progress/MockingProgress.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/progress/MockingProgressImpl.class b/org.mockito/org/mockito/internal/progress/MockingProgressImpl.class
new file mode 100644
index 0000000..2dfc22b
--- /dev/null
+++ b/org.mockito/org/mockito/internal/progress/MockingProgressImpl.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/progress/SequenceNumber.class b/org.mockito/org/mockito/internal/progress/SequenceNumber.class
new file mode 100644
index 0000000..33393c7
--- /dev/null
+++ b/org.mockito/org/mockito/internal/progress/SequenceNumber.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/progress/ThreadSafeMockingProgress.class b/org.mockito/org/mockito/internal/progress/ThreadSafeMockingProgress.class
new file mode 100644
index 0000000..13bd782
--- /dev/null
+++ b/org.mockito/org/mockito/internal/progress/ThreadSafeMockingProgress.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/progress/package.html b/org.mockito/org/mockito/internal/progress/package.html
new file mode 100644
index 0000000..5b6a915
--- /dev/null
+++ b/org.mockito/org/mockito/internal/progress/package.html
@@ -0,0 +1,3 @@
+<body>
+Mocking progress stateful classes.
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/reporting/PrintSettings.class b/org.mockito/org/mockito/internal/reporting/PrintSettings.class
new file mode 100644
index 0000000..9934bb9
--- /dev/null
+++ b/org.mockito/org/mockito/internal/reporting/PrintSettings.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/reporting/PrintingFriendlyInvocation.class b/org.mockito/org/mockito/internal/reporting/PrintingFriendlyInvocation.class
new file mode 100644
index 0000000..3f9f98b
--- /dev/null
+++ b/org.mockito/org/mockito/internal/reporting/PrintingFriendlyInvocation.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/reporting/SmartPrinter.class b/org.mockito/org/mockito/internal/reporting/SmartPrinter.class
new file mode 100644
index 0000000..23ea531
--- /dev/null
+++ b/org.mockito/org/mockito/internal/reporting/SmartPrinter.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/reporting/package.html b/org.mockito/org/mockito/internal/reporting/package.html
new file mode 100644
index 0000000..40504ac
--- /dev/null
+++ b/org.mockito/org/mockito/internal/reporting/package.html
@@ -0,0 +1,3 @@
+<body>
+Deals with nicely printing verification errors
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/runners/JUnit44RunnerImpl$1.class b/org.mockito/org/mockito/internal/runners/JUnit44RunnerImpl$1.class
new file mode 100644
index 0000000..151f401
--- /dev/null
+++ b/org.mockito/org/mockito/internal/runners/JUnit44RunnerImpl$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/runners/JUnit44RunnerImpl.class b/org.mockito/org/mockito/internal/runners/JUnit44RunnerImpl.class
new file mode 100644
index 0000000..b15d402
--- /dev/null
+++ b/org.mockito/org/mockito/internal/runners/JUnit44RunnerImpl.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/runners/JUnit45AndHigherRunnerImpl$1.class b/org.mockito/org/mockito/internal/runners/JUnit45AndHigherRunnerImpl$1.class
new file mode 100644
index 0000000..a55e1db
--- /dev/null
+++ b/org.mockito/org/mockito/internal/runners/JUnit45AndHigherRunnerImpl$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/runners/JUnit45AndHigherRunnerImpl.class b/org.mockito/org/mockito/internal/runners/JUnit45AndHigherRunnerImpl.class
new file mode 100644
index 0000000..2c28289
--- /dev/null
+++ b/org.mockito/org/mockito/internal/runners/JUnit45AndHigherRunnerImpl.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/runners/RunnerFactory.class b/org.mockito/org/mockito/internal/runners/RunnerFactory.class
new file mode 100644
index 0000000..abe7bc1
--- /dev/null
+++ b/org.mockito/org/mockito/internal/runners/RunnerFactory.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/runners/RunnerImpl.class b/org.mockito/org/mockito/internal/runners/RunnerImpl.class
new file mode 100644
index 0000000..f9d612b
--- /dev/null
+++ b/org.mockito/org/mockito/internal/runners/RunnerImpl.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/runners/package.html b/org.mockito/org/mockito/internal/runners/package.html
new file mode 100644
index 0000000..e0c8d9e
--- /dev/null
+++ b/org.mockito/org/mockito/internal/runners/package.html
@@ -0,0 +1,3 @@
+<body>
+Internal classes for runners implementations
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/runners/util/FrameworkUsageValidator.class b/org.mockito/org/mockito/internal/runners/util/FrameworkUsageValidator.class
new file mode 100644
index 0000000..82828ce
--- /dev/null
+++ b/org.mockito/org/mockito/internal/runners/util/FrameworkUsageValidator.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/runners/util/RunnerProvider.class b/org.mockito/org/mockito/internal/runners/util/RunnerProvider.class
new file mode 100644
index 0000000..7b40f60
--- /dev/null
+++ b/org.mockito/org/mockito/internal/runners/util/RunnerProvider.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/runners/util/TestMethodsFinder.class b/org.mockito/org/mockito/internal/runners/util/TestMethodsFinder.class
new file mode 100644
index 0000000..5273f49
--- /dev/null
+++ b/org.mockito/org/mockito/internal/runners/util/TestMethodsFinder.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/runners/util/package.html b/org.mockito/org/mockito/internal/runners/util/package.html
new file mode 100644
index 0000000..f6c9b30
--- /dev/null
+++ b/org.mockito/org/mockito/internal/runners/util/package.html
@@ -0,0 +1,3 @@
+<body>
+Internal utils for runner implementations
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/stubbing/BaseStubbing.class b/org.mockito/org/mockito/internal/stubbing/BaseStubbing.class
new file mode 100644
index 0000000..ada502c
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/BaseStubbing.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/ConsecutiveStubbing.class b/org.mockito/org/mockito/internal/stubbing/ConsecutiveStubbing.class
new file mode 100644
index 0000000..e5f35fd
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/ConsecutiveStubbing.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/InvocationContainer.class b/org.mockito/org/mockito/internal/stubbing/InvocationContainer.class
new file mode 100644
index 0000000..d5f8340
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/InvocationContainer.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/InvocationContainerImpl.class b/org.mockito/org/mockito/internal/stubbing/InvocationContainerImpl.class
new file mode 100644
index 0000000..d756276
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/InvocationContainerImpl.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/OngoingStubbingImpl.class b/org.mockito/org/mockito/internal/stubbing/OngoingStubbingImpl.class
new file mode 100644
index 0000000..e4d484d
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/OngoingStubbingImpl.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/StubbedInvocationMatcher.class b/org.mockito/org/mockito/internal/stubbing/StubbedInvocationMatcher.class
new file mode 100644
index 0000000..1c8eb18
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/StubbedInvocationMatcher.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/StubberImpl.class b/org.mockito/org/mockito/internal/stubbing/StubberImpl.class
new file mode 100644
index 0000000..aa98754
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/StubberImpl.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/VoidMethodStubbableImpl.class b/org.mockito/org/mockito/internal/stubbing/VoidMethodStubbableImpl.class
new file mode 100644
index 0000000..c4e4598
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/VoidMethodStubbableImpl.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/answers/AnswerReturnValuesAdapter.class b/org.mockito/org/mockito/internal/stubbing/answers/AnswerReturnValuesAdapter.class
new file mode 100644
index 0000000..eba48ef
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/answers/AnswerReturnValuesAdapter.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/answers/AnswersValidator.class b/org.mockito/org/mockito/internal/stubbing/answers/AnswersValidator.class
new file mode 100644
index 0000000..b9fff02
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/answers/AnswersValidator.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/answers/CallsRealMethods.class b/org.mockito/org/mockito/internal/stubbing/answers/CallsRealMethods.class
new file mode 100644
index 0000000..09953f0
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/answers/CallsRealMethods.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/answers/ClonesArguments.class b/org.mockito/org/mockito/internal/stubbing/answers/ClonesArguments.class
new file mode 100644
index 0000000..5b470ee
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/answers/ClonesArguments.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/answers/DoesNothing.class b/org.mockito/org/mockito/internal/stubbing/answers/DoesNothing.class
new file mode 100644
index 0000000..7120de4
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/answers/DoesNothing.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/answers/Returns.class b/org.mockito/org/mockito/internal/stubbing/answers/Returns.class
new file mode 100644
index 0000000..f43a6f6
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/answers/Returns.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/answers/ThrowsException.class b/org.mockito/org/mockito/internal/stubbing/answers/ThrowsException.class
new file mode 100644
index 0000000..f968cd7
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/answers/ThrowsException.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/answers/package.html b/org.mockito/org/mockito/internal/stubbing/answers/package.html
new file mode 100644
index 0000000..78dbdc7
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/answers/package.html
@@ -0,0 +1,3 @@
+<body>
+Answers for stubbed calls
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/stubbing/defaultanswers/Answers.class b/org.mockito/org/mockito/internal/stubbing/defaultanswers/Answers.class
new file mode 100644
index 0000000..d96cae9
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/defaultanswers/Answers.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/defaultanswers/GloballyConfiguredAnswer.class b/org.mockito/org/mockito/internal/stubbing/defaultanswers/GloballyConfiguredAnswer.class
new file mode 100644
index 0000000..beca375
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/defaultanswers/GloballyConfiguredAnswer.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsDeepStubs$1.class b/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsDeepStubs$1.class
new file mode 100644
index 0000000..4e06f7e
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsDeepStubs$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsDeepStubs.class b/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsDeepStubs.class
new file mode 100644
index 0000000..7aac8e3
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsDeepStubs.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsEmptyValues.class b/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsEmptyValues.class
new file mode 100644
index 0000000..913bdf1
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsEmptyValues.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsMocks.class b/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsMocks.class
new file mode 100644
index 0000000..ca4889c
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsMocks.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsMoreEmptyValues.class b/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsMoreEmptyValues.class
new file mode 100644
index 0000000..4d59088
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsMoreEmptyValues.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsSmartNulls$1.class b/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsSmartNulls$1.class
new file mode 100644
index 0000000..0cdd942
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsSmartNulls$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsSmartNulls$ThrowingInterceptor.class b/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsSmartNulls$ThrowingInterceptor.class
new file mode 100644
index 0000000..a0fc7cb
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsSmartNulls$ThrowingInterceptor.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsSmartNulls.class b/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsSmartNulls.class
new file mode 100644
index 0000000..0f41419
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/defaultanswers/ReturnsSmartNulls.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/stubbing/defaultanswers/package.html b/org.mockito/org/mockito/internal/stubbing/defaultanswers/package.html
new file mode 100644
index 0000000..1f0eec3
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/defaultanswers/package.html
@@ -0,0 +1,3 @@
+<body>
+Implementations of ReturnValues
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/stubbing/package.html b/org.mockito/org/mockito/internal/stubbing/package.html
new file mode 100644
index 0000000..e7b0ef4
--- /dev/null
+++ b/org.mockito/org/mockito/internal/stubbing/package.html
@@ -0,0 +1,3 @@
+<body>
+Stubbing logic.
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/util/ArrayUtils.class b/org.mockito/org/mockito/internal/util/ArrayUtils.class
new file mode 100644
index 0000000..668deb0
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/ArrayUtils.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/ConsoleMockitoLogger.class b/org.mockito/org/mockito/internal/util/ConsoleMockitoLogger.class
new file mode 100644
index 0000000..aa97156
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/ConsoleMockitoLogger.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/Decamelizer.class b/org.mockito/org/mockito/internal/util/Decamelizer.class
new file mode 100644
index 0000000..3dc1292
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/Decamelizer.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/IdentitySet.class b/org.mockito/org/mockito/internal/util/IdentitySet.class
new file mode 100644
index 0000000..db48f6e
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/IdentitySet.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/ListUtil$Filter.class b/org.mockito/org/mockito/internal/util/ListUtil$Filter.class
new file mode 100644
index 0000000..f6edaef
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/ListUtil$Filter.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/ListUtil.class b/org.mockito/org/mockito/internal/util/ListUtil.class
new file mode 100644
index 0000000..bd1f4a4
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/ListUtil.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/MockCreationValidator.class b/org.mockito/org/mockito/internal/util/MockCreationValidator.class
new file mode 100644
index 0000000..39d94f3
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/MockCreationValidator.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/MockName.class b/org.mockito/org/mockito/internal/util/MockName.class
new file mode 100644
index 0000000..100f85c
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/MockName.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/MockUtil.class b/org.mockito/org/mockito/internal/util/MockUtil.class
new file mode 100644
index 0000000..7fd1690
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/MockUtil.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/MockitoLogger.class b/org.mockito/org/mockito/internal/util/MockitoLogger.class
new file mode 100644
index 0000000..9a3f96d
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/MockitoLogger.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/ObjectMethodsGuru.class b/org.mockito/org/mockito/internal/util/ObjectMethodsGuru.class
new file mode 100644
index 0000000..7044f31
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/ObjectMethodsGuru.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/Primitives.class b/org.mockito/org/mockito/internal/util/Primitives.class
new file mode 100644
index 0000000..c3c450e
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/Primitives.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/RemoveFirstLine.class b/org.mockito/org/mockito/internal/util/RemoveFirstLine.class
new file mode 100644
index 0000000..129dbdf
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/RemoveFirstLine.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/SimpleMockitoLogger.class b/org.mockito/org/mockito/internal/util/SimpleMockitoLogger.class
new file mode 100644
index 0000000..5e95b63
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/SimpleMockitoLogger.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/StringJoiner.class b/org.mockito/org/mockito/internal/util/StringJoiner.class
new file mode 100644
index 0000000..8c6fa1b
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/StringJoiner.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/junit/JUnitFailureHacker.class b/org.mockito/org/mockito/internal/util/junit/JUnitFailureHacker.class
new file mode 100644
index 0000000..9febd26
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/junit/JUnitFailureHacker.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/package.html b/org.mockito/org/mockito/internal/util/package.html
new file mode 100644
index 0000000..f665476
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/package.html
@@ -0,0 +1,3 @@
+<body>
+Static utils
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/util/reflection/AccessibilityChanger.class b/org.mockito/org/mockito/internal/util/reflection/AccessibilityChanger.class
new file mode 100644
index 0000000..24d900d
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/reflection/AccessibilityChanger.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/reflection/FieldCopier.class b/org.mockito/org/mockito/internal/util/reflection/FieldCopier.class
new file mode 100644
index 0000000..e4accc3
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/reflection/FieldCopier.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/reflection/FieldReader.class b/org.mockito/org/mockito/internal/util/reflection/FieldReader.class
new file mode 100644
index 0000000..a5657cf
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/reflection/FieldReader.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/reflection/FieldSetter.class b/org.mockito/org/mockito/internal/util/reflection/FieldSetter.class
new file mode 100644
index 0000000..8aa034f
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/reflection/FieldSetter.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/reflection/GenericMaster.class b/org.mockito/org/mockito/internal/util/reflection/GenericMaster.class
new file mode 100644
index 0000000..1a898c7
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/reflection/GenericMaster.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/reflection/LenientCopyTool.class b/org.mockito/org/mockito/internal/util/reflection/LenientCopyTool.class
new file mode 100644
index 0000000..6163f0a
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/reflection/LenientCopyTool.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/reflection/Whitebox.class b/org.mockito/org/mockito/internal/util/reflection/Whitebox.class
new file mode 100644
index 0000000..7c13bb3
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/reflection/Whitebox.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/util/reflection/package.html b/org.mockito/org/mockito/internal/util/reflection/package.html
new file mode 100644
index 0000000..3d64684
--- /dev/null
+++ b/org.mockito/org/mockito/internal/util/reflection/package.html
@@ -0,0 +1,3 @@
+<body>
+reflection utilities
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/verification/AtLeast.class b/org.mockito/org/mockito/internal/verification/AtLeast.class
new file mode 100644
index 0000000..69ac52f
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/AtLeast.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/AtMost.class b/org.mockito/org/mockito/internal/verification/AtMost.class
new file mode 100644
index 0000000..0f0a921
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/AtMost.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/InOrderContextImpl.class b/org.mockito/org/mockito/internal/verification/InOrderContextImpl.class
new file mode 100644
index 0000000..90ef04b
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/InOrderContextImpl.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/InOrderWrapper.class b/org.mockito/org/mockito/internal/verification/InOrderWrapper.class
new file mode 100644
index 0000000..306cc82
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/InOrderWrapper.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/MockAwareVerificationMode.class b/org.mockito/org/mockito/internal/verification/MockAwareVerificationMode.class
new file mode 100644
index 0000000..c46fac6
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/MockAwareVerificationMode.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/NoMoreInteractions.class b/org.mockito/org/mockito/internal/verification/NoMoreInteractions.class
new file mode 100644
index 0000000..3ca016b
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/NoMoreInteractions.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/Only.class b/org.mockito/org/mockito/internal/verification/Only.class
new file mode 100644
index 0000000..89f4cd5
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/Only.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/RegisteredInvocations$1.class b/org.mockito/org/mockito/internal/verification/RegisteredInvocations$1.class
new file mode 100644
index 0000000..ebe6bb1
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/RegisteredInvocations$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/RegisteredInvocations$RemoveToString.class b/org.mockito/org/mockito/internal/verification/RegisteredInvocations$RemoveToString.class
new file mode 100644
index 0000000..dc8f9ca
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/RegisteredInvocations$RemoveToString.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/RegisteredInvocations.class b/org.mockito/org/mockito/internal/verification/RegisteredInvocations.class
new file mode 100644
index 0000000..4880a61
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/RegisteredInvocations.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/Times.class b/org.mockito/org/mockito/internal/verification/Times.class
new file mode 100644
index 0000000..269bb97
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/Times.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/VerificationDataImpl.class b/org.mockito/org/mockito/internal/verification/VerificationDataImpl.class
new file mode 100644
index 0000000..fffd039
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/VerificationDataImpl.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/VerificationModeFactory.class b/org.mockito/org/mockito/internal/verification/VerificationModeFactory.class
new file mode 100644
index 0000000..9b0ff2b
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/VerificationModeFactory.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/VerificationWithTimeoutImpl.class b/org.mockito/org/mockito/internal/verification/VerificationWithTimeoutImpl.class
new file mode 100644
index 0000000..06a8dee
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/VerificationWithTimeoutImpl.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/api/InOrderContext.class b/org.mockito/org/mockito/internal/verification/api/InOrderContext.class
new file mode 100644
index 0000000..7ac7f3d
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/api/InOrderContext.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/api/VerificationData.class b/org.mockito/org/mockito/internal/verification/api/VerificationData.class
new file mode 100644
index 0000000..fbe9fb6
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/api/VerificationData.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/api/VerificationDataInOrder.class b/org.mockito/org/mockito/internal/verification/api/VerificationDataInOrder.class
new file mode 100644
index 0000000..ebec934
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/api/VerificationDataInOrder.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/api/VerificationDataInOrderImpl.class b/org.mockito/org/mockito/internal/verification/api/VerificationDataInOrderImpl.class
new file mode 100644
index 0000000..230f8da
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/api/VerificationDataInOrderImpl.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/api/VerificationInOrderMode.class b/org.mockito/org/mockito/internal/verification/api/VerificationInOrderMode.class
new file mode 100644
index 0000000..f112bf3
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/api/VerificationInOrderMode.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/api/package.html b/org.mockito/org/mockito/internal/verification/api/package.html
new file mode 100644
index 0000000..b475499
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/api/package.html
@@ -0,0 +1,3 @@
+<body>
+This package should be open to public once verification API is fully finished
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/verification/argumentmatching/ArgumentMatchingTool.class b/org.mockito/org/mockito/internal/verification/argumentmatching/ArgumentMatchingTool.class
new file mode 100644
index 0000000..ad8594f
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/argumentmatching/ArgumentMatchingTool.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/argumentmatching/package.html b/org.mockito/org/mockito/internal/verification/argumentmatching/package.html
new file mode 100644
index 0000000..67ceef6
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/argumentmatching/package.html
@@ -0,0 +1,3 @@
+<body>
+Deals with matching arguments
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/verification/checkers/AtLeastDiscrepancy.class b/org.mockito/org/mockito/internal/verification/checkers/AtLeastDiscrepancy.class
new file mode 100644
index 0000000..fff926e
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/checkers/AtLeastDiscrepancy.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/checkers/AtLeastXNumberOfInvocationsChecker.class b/org.mockito/org/mockito/internal/verification/checkers/AtLeastXNumberOfInvocationsChecker.class
new file mode 100644
index 0000000..24f3dbf
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/checkers/AtLeastXNumberOfInvocationsChecker.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/checkers/AtLeastXNumberOfInvocationsInOrderChecker.class b/org.mockito/org/mockito/internal/verification/checkers/AtLeastXNumberOfInvocationsInOrderChecker.class
new file mode 100644
index 0000000..964a4dc
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/checkers/AtLeastXNumberOfInvocationsInOrderChecker.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/checkers/MissingInvocationChecker.class b/org.mockito/org/mockito/internal/verification/checkers/MissingInvocationChecker.class
new file mode 100644
index 0000000..3b6569c
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/checkers/MissingInvocationChecker.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/checkers/MissingInvocationInOrderChecker.class b/org.mockito/org/mockito/internal/verification/checkers/MissingInvocationInOrderChecker.class
new file mode 100644
index 0000000..031e041
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/checkers/MissingInvocationInOrderChecker.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/checkers/NumberOfInvocationsChecker.class b/org.mockito/org/mockito/internal/verification/checkers/NumberOfInvocationsChecker.class
new file mode 100644
index 0000000..f1f97c1
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/checkers/NumberOfInvocationsChecker.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/checkers/NumberOfInvocationsInOrderChecker.class b/org.mockito/org/mockito/internal/verification/checkers/NumberOfInvocationsInOrderChecker.class
new file mode 100644
index 0000000..945316a
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/checkers/NumberOfInvocationsInOrderChecker.class
Binary files differ
diff --git a/org.mockito/org/mockito/internal/verification/checkers/package.html b/org.mockito/org/mockito/internal/verification/checkers/package.html
new file mode 100644
index 0000000..08f3c57
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/checkers/package.html
@@ -0,0 +1,3 @@
+<body>
+verification checkers
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/internal/verification/package.html b/org.mockito/org/mockito/internal/verification/package.html
new file mode 100644
index 0000000..f0ec2c5
--- /dev/null
+++ b/org.mockito/org/mockito/internal/verification/package.html
@@ -0,0 +1,3 @@
+<body>
+Verification logic.
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/invocation/InvocationOnMock.class b/org.mockito/org/mockito/invocation/InvocationOnMock.class
new file mode 100644
index 0000000..84dfc9d
--- /dev/null
+++ b/org.mockito/org/mockito/invocation/InvocationOnMock.class
Binary files differ
diff --git a/org.mockito/org/mockito/invocation/package.html b/org.mockito/org/mockito/invocation/package.html
new file mode 100644
index 0000000..43598f5
--- /dev/null
+++ b/org.mockito/org/mockito/invocation/package.html
@@ -0,0 +1,3 @@
+<body>
+Publicly visible classes related to invocation
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/package.html b/org.mockito/org/mockito/package.html
new file mode 100644
index 0000000..895e5d9
--- /dev/null
+++ b/org.mockito/org/mockito/package.html
@@ -0,0 +1,3 @@
+<body>
+Mockito is a mock library for java - see Mockito class for for usage.
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/runners/ConsoleSpammingMockitoJUnitRunner$1.class b/org.mockito/org/mockito/runners/ConsoleSpammingMockitoJUnitRunner$1.class
new file mode 100644
index 0000000..6be2773
--- /dev/null
+++ b/org.mockito/org/mockito/runners/ConsoleSpammingMockitoJUnitRunner$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/runners/ConsoleSpammingMockitoJUnitRunner.class b/org.mockito/org/mockito/runners/ConsoleSpammingMockitoJUnitRunner.class
new file mode 100644
index 0000000..6457109
--- /dev/null
+++ b/org.mockito/org/mockito/runners/ConsoleSpammingMockitoJUnitRunner.class
Binary files differ
diff --git a/org.mockito/org/mockito/runners/MockitoJUnit44Runner.class b/org.mockito/org/mockito/runners/MockitoJUnit44Runner.class
new file mode 100644
index 0000000..914301c
--- /dev/null
+++ b/org.mockito/org/mockito/runners/MockitoJUnit44Runner.class
Binary files differ
diff --git a/org.mockito/org/mockito/runners/MockitoJUnitRunner.class b/org.mockito/org/mockito/runners/MockitoJUnitRunner.class
new file mode 100644
index 0000000..55ddf7d
--- /dev/null
+++ b/org.mockito/org/mockito/runners/MockitoJUnitRunner.class
Binary files differ
diff --git a/org.mockito/org/mockito/runners/VerboseMockitoJUnitRunner$1.class b/org.mockito/org/mockito/runners/VerboseMockitoJUnitRunner$1.class
new file mode 100644
index 0000000..081b2cf
--- /dev/null
+++ b/org.mockito/org/mockito/runners/VerboseMockitoJUnitRunner$1.class
Binary files differ
diff --git a/org.mockito/org/mockito/runners/VerboseMockitoJUnitRunner.class b/org.mockito/org/mockito/runners/VerboseMockitoJUnitRunner.class
new file mode 100644
index 0000000..3ab35c8
--- /dev/null
+++ b/org.mockito/org/mockito/runners/VerboseMockitoJUnitRunner.class
Binary files differ
diff --git a/org.mockito/org/mockito/runners/package.html b/org.mockito/org/mockito/runners/package.html
new file mode 100644
index 0000000..d2ac052
--- /dev/null
+++ b/org.mockito/org/mockito/runners/package.html
@@ -0,0 +1,3 @@
+<body>
+JUnit runners.
+</body>
diff --git a/org.mockito/org/mockito/stubbing/Answer.class b/org.mockito/org/mockito/stubbing/Answer.class
new file mode 100644
index 0000000..d1eef4f
--- /dev/null
+++ b/org.mockito/org/mockito/stubbing/Answer.class
Binary files differ
diff --git a/org.mockito/org/mockito/stubbing/DeprecatedOngoingStubbing.class b/org.mockito/org/mockito/stubbing/DeprecatedOngoingStubbing.class
new file mode 100644
index 0000000..bcbf4d1
--- /dev/null
+++ b/org.mockito/org/mockito/stubbing/DeprecatedOngoingStubbing.class
Binary files differ
diff --git a/org.mockito/org/mockito/stubbing/OngoingStubbing.class b/org.mockito/org/mockito/stubbing/OngoingStubbing.class
new file mode 100644
index 0000000..59a4f23
--- /dev/null
+++ b/org.mockito/org/mockito/stubbing/OngoingStubbing.class
Binary files differ
diff --git a/org.mockito/org/mockito/stubbing/Stubber.class b/org.mockito/org/mockito/stubbing/Stubber.class
new file mode 100644
index 0000000..d76915d
--- /dev/null
+++ b/org.mockito/org/mockito/stubbing/Stubber.class
Binary files differ
diff --git a/org.mockito/org/mockito/stubbing/VoidMethodStubbable.class b/org.mockito/org/mockito/stubbing/VoidMethodStubbable.class
new file mode 100644
index 0000000..64db295
--- /dev/null
+++ b/org.mockito/org/mockito/stubbing/VoidMethodStubbable.class
Binary files differ
diff --git a/org.mockito/org/mockito/stubbing/answers/ReturnsElementsOf.class b/org.mockito/org/mockito/stubbing/answers/ReturnsElementsOf.class
new file mode 100644
index 0000000..eeb335a
--- /dev/null
+++ b/org.mockito/org/mockito/stubbing/answers/ReturnsElementsOf.class
Binary files differ
diff --git a/org.mockito/org/mockito/stubbing/package.html b/org.mockito/org/mockito/stubbing/package.html
new file mode 100644
index 0000000..852a472
--- /dev/null
+++ b/org.mockito/org/mockito/stubbing/package.html
@@ -0,0 +1,3 @@
+<body>
+External stubbing related classes
+</body>
\ No newline at end of file
diff --git a/org.mockito/org/mockito/verification/Timeout.class b/org.mockito/org/mockito/verification/Timeout.class
new file mode 100644
index 0000000..995c6cf
--- /dev/null
+++ b/org.mockito/org/mockito/verification/Timeout.class
Binary files differ
diff --git a/org.mockito/org/mockito/verification/VerificationMode.class b/org.mockito/org/mockito/verification/VerificationMode.class
new file mode 100644
index 0000000..5ec57a6
--- /dev/null
+++ b/org.mockito/org/mockito/verification/VerificationMode.class
Binary files differ
diff --git a/org.mockito/org/mockito/verification/VerificationWithTimeout.class b/org.mockito/org/mockito/verification/VerificationWithTimeout.class
new file mode 100644
index 0000000..dff6cea
--- /dev/null
+++ b/org.mockito/org/mockito/verification/VerificationWithTimeout.class
Binary files differ
diff --git a/org.mockito/org/objenesis/Objenesis.class b/org.mockito/org/objenesis/Objenesis.class
new file mode 100644
index 0000000..5d1cd3b
--- /dev/null
+++ b/org.mockito/org/objenesis/Objenesis.class
Binary files differ
diff --git a/org.mockito/org/objenesis/ObjenesisBase.class b/org.mockito/org/objenesis/ObjenesisBase.class
new file mode 100644
index 0000000..67c2465
--- /dev/null
+++ b/org.mockito/org/objenesis/ObjenesisBase.class
Binary files differ
diff --git a/org.mockito/org/objenesis/ObjenesisException.class b/org.mockito/org/objenesis/ObjenesisException.class
new file mode 100644
index 0000000..2d5d036
--- /dev/null
+++ b/org.mockito/org/objenesis/ObjenesisException.class
Binary files differ
diff --git a/org.mockito/org/objenesis/ObjenesisHelper.class b/org.mockito/org/objenesis/ObjenesisHelper.class
new file mode 100644
index 0000000..518a190
--- /dev/null
+++ b/org.mockito/org/objenesis/ObjenesisHelper.class
Binary files differ
diff --git a/org.mockito/org/objenesis/ObjenesisSerializer.class b/org.mockito/org/objenesis/ObjenesisSerializer.class
new file mode 100644
index 0000000..225d750
--- /dev/null
+++ b/org.mockito/org/objenesis/ObjenesisSerializer.class
Binary files differ
diff --git a/org.mockito/org/objenesis/ObjenesisStd.class b/org.mockito/org/objenesis/ObjenesisStd.class
new file mode 100644
index 0000000..952c5c7
--- /dev/null
+++ b/org.mockito/org/objenesis/ObjenesisStd.class
Binary files differ
diff --git a/org.mockito/org/objenesis/instantiator/NullInstantiator.class b/org.mockito/org/objenesis/instantiator/NullInstantiator.class
new file mode 100644
index 0000000..b6c914d
--- /dev/null
+++ b/org.mockito/org/objenesis/instantiator/NullInstantiator.class
Binary files differ
diff --git a/org.mockito/org/objenesis/instantiator/ObjectInstantiator.class b/org.mockito/org/objenesis/instantiator/ObjectInstantiator.class
new file mode 100644
index 0000000..009ff52
--- /dev/null
+++ b/org.mockito/org/objenesis/instantiator/ObjectInstantiator.class
Binary files differ
diff --git a/org.mockito/org/objenesis/instantiator/SerializationInstantiatorHelper.class b/org.mockito/org/objenesis/instantiator/SerializationInstantiatorHelper.class
new file mode 100644
index 0000000..3ae3eff
--- /dev/null
+++ b/org.mockito/org/objenesis/instantiator/SerializationInstantiatorHelper.class
Binary files differ
diff --git a/org.mockito/org/objenesis/instantiator/basic/AccessibleInstantiator.class b/org.mockito/org/objenesis/instantiator/basic/AccessibleInstantiator.class
new file mode 100644
index 0000000..1b36a59
--- /dev/null
+++ b/org.mockito/org/objenesis/instantiator/basic/AccessibleInstantiator.class
Binary files differ
diff --git a/org.mockito/org/objenesis/instantiator/basic/ConstructorInstantiator.class b/org.mockito/org/objenesis/instantiator/basic/ConstructorInstantiator.class
new file mode 100644
index 0000000..41035d1
--- /dev/null
+++ b/org.mockito/org/objenesis/instantiator/basic/ConstructorInstantiator.class
Binary files differ
diff --git a/org.mockito/org/objenesis/instantiator/basic/NewInstanceInstantiator.class b/org.mockito/org/objenesis/instantiator/basic/NewInstanceInstantiator.class
new file mode 100644
index 0000000..b17d0a7
--- /dev/null
+++ b/org.mockito/org/objenesis/instantiator/basic/NewInstanceInstantiator.class
Binary files differ
diff --git a/org.mockito/org/objenesis/instantiator/basic/ObjectInputStreamInstantiator$MockStream.class b/org.mockito/org/objenesis/instantiator/basic/ObjectInputStreamInstantiator$MockStream.class
new file mode 100644
index 0000000..e2c6f6e
--- /dev/null
+++ b/org.mockito/org/objenesis/instantiator/basic/ObjectInputStreamInstantiator$MockStream.class
Binary files differ
diff --git a/org.mockito/org/objenesis/instantiator/basic/ObjectInputStreamInstantiator.class b/org.mockito/org/objenesis/instantiator/basic/ObjectInputStreamInstantiator.class
new file mode 100644
index 0000000..10ff565
--- /dev/null
+++ b/org.mockito/org/objenesis/instantiator/basic/ObjectInputStreamInstantiator.class
Binary files differ
diff --git a/org.mockito/org/objenesis/instantiator/basic/ObjectStreamClassInstantiator.class b/org.mockito/org/objenesis/instantiator/basic/ObjectStreamClassInstantiator.class
new file mode 100644
index 0000000..4724fc0
--- /dev/null
+++ b/org.mockito/org/objenesis/instantiator/basic/ObjectStreamClassInstantiator.class
Binary files differ
diff --git a/org.mockito/org/objenesis/instantiator/gcj/GCJInstantiator.class b/org.mockito/org/objenesis/instantiator/gcj/GCJInstantiator.class
new file mode 100644
index 0000000..ec59ebd
--- /dev/null
+++ b/org.mockito/org/objenesis/instantiator/gcj/GCJInstantiator.class
Binary files differ
diff --git a/org.mockito/org/objenesis/instantiator/gcj/GCJInstantiatorBase$DummyStream.class b/org.mockito/org/objenesis/instantiator/gcj/GCJInstantiatorBase$DummyStream.class
new file mode 100644
index 0000000..211d045
--- /dev/null
+++ b/org.mockito/org/objenesis/instantiator/gcj/GCJInstantiatorBase$DummyStream.class
Binary files differ
diff --git a/org.mockito/org/objenesis/instantiator/gcj/GCJInstantiatorBase.class b/org.mockito/org/objenesis/instantiator/gcj/GCJInstantiatorBase.class
new file mode 100644
index 0000000..cc2e11b
--- /dev/null
+++ b/org.mockito/org/objenesis/instantiator/gcj/GCJInstantiatorBase.class
Binary files differ
diff --git a/org.mockito/org/objenesis/instantiator/gcj/GCJSerializationInstantiator.class b/org.mockito/org/objenesis/instantiator/gcj/GCJSerializationInstantiator.class
new file mode 100644
index 0000000..8f071f5
--- /dev/null
+++ b/org.mockito/org/objenesis/instantiator/gcj/GCJSerializationInstantiator.class
Binary files differ
diff --git a/org.mockito/org/objenesis/instantiator/jrockit/JRockit131Instantiator.class b/org.mockito/org/objenesis/instantiator/jrockit/JRockit131Instantiator.class
new file mode 100644
index 0000000..1003e36
--- /dev/null
+++ b/org.mockito/org/objenesis/instantiator/jrockit/JRockit131Instantiator.class
Binary files differ
diff --git a/org.mockito/org/objenesis/instantiator/jrockit/JRockitLegacyInstantiator.class b/org.mockito/org/objenesis/instantiator/jrockit/JRockitLegacyInstantiator.class
new file mode 100644
index 0000000..181fbb9
--- /dev/null
+++ b/org.mockito/org/objenesis/instantiator/jrockit/JRockitLegacyInstantiator.class
Binary files differ
diff --git a/org.mockito/org/objenesis/instantiator/sun/Sun13Instantiator.class b/org.mockito/org/objenesis/instantiator/sun/Sun13Instantiator.class
new file mode 100644
index 0000000..c49bf6e
--- /dev/null
+++ b/org.mockito/org/objenesis/instantiator/sun/Sun13Instantiator.class
Binary files differ
diff --git a/org.mockito/org/objenesis/instantiator/sun/Sun13InstantiatorBase.class b/org.mockito/org/objenesis/instantiator/sun/Sun13InstantiatorBase.class
new file mode 100644
index 0000000..026e955
--- /dev/null
+++ b/org.mockito/org/objenesis/instantiator/sun/Sun13InstantiatorBase.class
Binary files differ
diff --git a/org.mockito/org/objenesis/instantiator/sun/Sun13SerializationInstantiator.class b/org.mockito/org/objenesis/instantiator/sun/Sun13SerializationInstantiator.class
new file mode 100644
index 0000000..daa3823
--- /dev/null
+++ b/org.mockito/org/objenesis/instantiator/sun/Sun13SerializationInstantiator.class
Binary files differ
diff --git a/org.mockito/org/objenesis/instantiator/sun/SunReflectionFactoryInstantiator.class b/org.mockito/org/objenesis/instantiator/sun/SunReflectionFactoryInstantiator.class
new file mode 100644
index 0000000..5fbdfd5
--- /dev/null
+++ b/org.mockito/org/objenesis/instantiator/sun/SunReflectionFactoryInstantiator.class
Binary files differ
diff --git a/org.mockito/org/objenesis/instantiator/sun/SunReflectionFactorySerializationInstantiator.class b/org.mockito/org/objenesis/instantiator/sun/SunReflectionFactorySerializationInstantiator.class
new file mode 100644
index 0000000..787358a
--- /dev/null
+++ b/org.mockito/org/objenesis/instantiator/sun/SunReflectionFactorySerializationInstantiator.class
Binary files differ
diff --git a/org.mockito/org/objenesis/strategy/BaseInstantiatorStrategy.class b/org.mockito/org/objenesis/strategy/BaseInstantiatorStrategy.class
new file mode 100644
index 0000000..4b46fd5
--- /dev/null
+++ b/org.mockito/org/objenesis/strategy/BaseInstantiatorStrategy.class
Binary files differ
diff --git a/org.mockito/org/objenesis/strategy/InstantiatorStrategy.class b/org.mockito/org/objenesis/strategy/InstantiatorStrategy.class
new file mode 100644
index 0000000..f8d8335
--- /dev/null
+++ b/org.mockito/org/objenesis/strategy/InstantiatorStrategy.class
Binary files differ
diff --git a/org.mockito/org/objenesis/strategy/SerializingInstantiatorStrategy.class b/org.mockito/org/objenesis/strategy/SerializingInstantiatorStrategy.class
new file mode 100644
index 0000000..d2f8707
--- /dev/null
+++ b/org.mockito/org/objenesis/strategy/SerializingInstantiatorStrategy.class
Binary files differ
diff --git a/org.mockito/org/objenesis/strategy/StdInstantiatorStrategy.class b/org.mockito/org/objenesis/strategy/StdInstantiatorStrategy.class
new file mode 100644
index 0000000..cdf3599
--- /dev/null
+++ b/org.mockito/org/objenesis/strategy/StdInstantiatorStrategy.class
Binary files differ