| 组织ID: |
org.mutabilitydetector |
| 项目ID: |
MutabilityDetector |
| 版本: |
0.6 |
| 最后修改时间: |
2019-10-23 13:40:25 |
| 包类型: |
jar |
| 标题: |
MutabilityDetector |
| 描述: |
Lightweight analysis tool for detecting mutability in Java
classes. |
| 相关URL: |
http://code.google.com/p/mutability-detector |
| 大小: |
602.85KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.mutabilitydetector</groupId>
<artifactId>MutabilityDetector</artifactId>
<version>0.6</version>
</dependency>
|
| Gradle引入代码: |
org.mutabilitydetector:MutabilityDetector:0.6
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>oss-parent</artifactId>
<groupId>org.sonatype.oss</groupId>
<version>7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.mutabilitydetector</groupId>
<artifactId>MutabilityDetector</artifactId>
<name>MutabilityDetector</name>
<version>0.6</version>
<description>Lightweight analysis tool for detecting mutability in Java
classes.</description>
<url>http://code.google.com/p/mutability-detector</url>
<issueManagement>
<url>http://code.google.com/p/mutability-detector/issues/list</url>
</issueManagement>
<developers>
<developer>
<id>grundlefleck</id>
<name>Graham Allan</name>
<email>grundlefleck@gmail.com</email>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:svn:http://mutability-detector.googlecode.com/svn/trunk/MutabilityDetector/tags/MutabilityDetector-0.6</connection>
<developerConnection>scm:svn:https://mutability-detector.googlecode.com/svn/trunk/MutabilityDetector/tags/MutabilityDetector-0.6</developerConnection>
<url>http://code.google.com/p/mutability-detector/source/browse/#svn/trunk/MutabilityDetector/tags/MutabilityDetector-0.6</url>
</scm>
<organization />
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-scm</artifactId>
<version>1.0-beta-6</version>
</extension>
<extension>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-manager-plexus</artifactId>
<version>1.0</version>
</extension>
<extension>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-svnexe</artifactId>
<version>1.0</version>
</extension>
</extensions>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>src/main/benchmarks</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
<createDependencyReducedPom>true</createDependencyReducedPom>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>LICENSE.txt</exclude>
<exclude>META-INF/LICENSE.txt</exclude>
<exclude>META-INF/NOTICE.txt</exclude>
</excludes>
</filter>
</filters>
<relocations>
<relocation>
<pattern>org.objectweb.asm</pattern>
<shadedPattern>${repackage.base}.org.objectweb.asm</shadedPattern>
</relocation>
<relocation>
<pattern>com.google</pattern>
<shadedPattern>${repackage.base}.com.google</shadedPattern>
</relocation>
<relocation>
<pattern>org.hamcrest</pattern>
<shadedPattern>${repackage.base}.org.hamcrest</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.commons.cli</pattern>
<shadedPattern>${repackage.base}.org.apache.commons.cli</shadedPattern>
</relocation>
</relocations>
<transformers>
<transformer>
<mainClass>${package.base}.cli.RunMutabilityDetector</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.8.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>objenesis</artifactId>
<groupId>org.objenesis</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit-dep</artifactId>
<version>4.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3.RC2</version>
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<site>
<id>google.code</id>
<url>scm:svn:https://mutability-detector.googlecode.com/svn/site</url>
</site>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<repackage.base>${package.base}.repackaged</repackage.base>
<package.base>org.mutabilitydetector</package.base>
</properties>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
org.mutabilitydetector.Reason.class
org.mutabilitydetector.IMutabilityCheckerFactory.class
org.mutabilitydetector.unittesting.MutabilityAssertionError.class
org.mutabilitydetector.unittesting.MutabilityAssert.class
org.mutabilitydetector.unittesting.matchers.MutabilityMatchers.class
org.mutabilitydetector.unittesting.matchers.WithAllowedReasonsMatcher.class
org.mutabilitydetector.unittesting.matchers.AnalysisResultMatcher.class
org.mutabilitydetector.unittesting.matchers.IsImmutableMatcher.class
org.mutabilitydetector.unittesting.matchers.NoWarningsAllowedMatcher.class
org.mutabilitydetector.unittesting.matchers.AllowedIfOtherClassIsImmutable.class
org.mutabilitydetector.unittesting.matchers.ConvertingTypeSafeMatcher.class
org.mutabilitydetector.unittesting.matchers.BaseAnalysisResultMatcher.class
org.mutabilitydetector.unittesting.matchers.ClassAnalysisResultMatcher.class
org.mutabilitydetector.unittesting.matchers.ClassToAnalysisResultMatcher.class
org.mutabilitydetector.unittesting.matchers.AllowedReasonCollector.class
org.mutabilitydetector.unittesting.matchers.NoReasonAllowedMatcher.class
org.mutabilitydetector.unittesting.AnalysisSessionHolder.class
org.mutabilitydetector.unittesting.AllowedReason.class
org.mutabilitydetector.unittesting.AssertionReporter.class
org.mutabilitydetector.unittesting.ProvidedOtherClass.class
org.mutabilitydetector.unittesting.ReasonsFormatter.class
org.mutabilitydetector.AnalysisResult.class
org.mutabilitydetector.cli.CommandLineOptionsException.class
org.mutabilitydetector.cli.ParsingAction.class
org.mutabilitydetector.cli.ClassListReaderFactory.class
org.mutabilitydetector.cli.SessionResultsFormatter$ClassnameComparator.class
org.mutabilitydetector.cli.CommandLineOptions$ReportMode.class
org.mutabilitydetector.cli.ClassListToReportCollector.class
org.mutabilitydetector.cli.OptionParserHelper.class
org.mutabilitydetector.cli.PlainTextClassListToReportReader.class
org.mutabilitydetector.cli.URLFallbackClassLoader.class
org.mutabilitydetector.cli.RunMutabilityDetector.class
org.mutabilitydetector.cli.SessionResultsFormatter.class
org.mutabilitydetector.cli.CommandLineOptions.class
org.mutabilitydetector.cli.CommandLineOptions$1.class
org.mutabilitydetector.cli.SessionResultsFormatter$1.class
org.mutabilitydetector.cli.CommandLineOptions$ParsingActionImplementation.class
org.mutabilitydetector.cli.ClassListException.class
org.mutabilitydetector.locations.Slashed.class
org.mutabilitydetector.locations.ClassName.class
org.mutabilitydetector.locations.ClassLocation.class
org.mutabilitydetector.locations.ClassNameConvertor.class
org.mutabilitydetector.locations.ClassIdentifier.class
org.mutabilitydetector.locations.CodeLocation.class
org.mutabilitydetector.locations.Dotted.class
org.mutabilitydetector.checkers.ResultCalculator.class
org.mutabilitydetector.checkers.AbstractTypeToFieldChecker$AssignAbstractTypeVisitor.class
org.mutabilitydetector.checkers.FieldAssignmentVisitor.class
org.mutabilitydetector.checkers.ISessionCheckerRunner.class
org.mutabilitydetector.checkers.VarStack.class
org.mutabilitydetector.checkers.NullMutabilityChecker.class
org.mutabilitydetector.checkers.VarStack$VarStackSnapshot.class
org.mutabilitydetector.checkers.AccessModifierQuery.class
org.mutabilitydetector.checkers.info.MethodIdentifier.class
org.mutabilitydetector.checkers.info.SessionCheckerRunner.class
org.mutabilitydetector.checkers.info.AnalysisDatabase$InfoKey.class
org.mutabilitydetector.checkers.info.AnalysisDatabase$1.class
org.mutabilitydetector.checkers.info.PrivateMethodInvocationInformation.class
org.mutabilitydetector.checkers.info.AnalysisDatabase.class
org.mutabilitydetector.checkers.info.InfoKeyException.class
org.mutabilitydetector.checkers.info.AnalysisInformation.class
org.mutabilitydetector.checkers.info.TypeStructureInformation.class
org.mutabilitydetector.checkers.PublishedNonFinalFieldChecker.class
org.mutabilitydetector.checkers.MutableTypeToFieldChecker$AssignMutableTypeToFieldChecker.class
org.mutabilitydetector.checkers.AbstractMutabilityChecker.class
org.mutabilitydetector.checkers.util.TypeStructureInformationChecker.class
org.mutabilitydetector.checkers.util.PrivateMethodInvocationChecker$MethodInvocationVisitor.class
org.mutabilitydetector.checkers.util.PrivateMethodInvocationChecker.class
org.mutabilitydetector.checkers.MutableTypeToFieldChecker.class
org.mutabilitydetector.checkers.SetterMethodChecker.class
org.mutabilitydetector.checkers.IMutabilityChecker.class
org.mutabilitydetector.checkers.SetterMethodChecker$SetterAssignmentVisitor.class
org.mutabilitydetector.checkers.MutabilityAnalysisException.class
org.mutabilitydetector.checkers.InherentTypeMutabilityChecker.class
org.mutabilitydetector.checkers.AbstractTypeToFieldChecker.class
org.mutabilitydetector.checkers.FinalClassChecker.class
org.mutabilitydetector.benchmarks.MutableByNoCopyOfIndirectlyConstructedField.class
org.mutabilitydetector.benchmarks.MutableByAssigningInterfaceToField.class
org.mutabilitydetector.benchmarks.MutableByNotBeingFinalClass.class
org.mutabilitydetector.benchmarks.ImmutableWithPublicFinalField.class
org.mutabilitydetector.benchmarks.MutableByAssigningAbstractTypeToField$StringContainer.class
org.mutabilitydetector.benchmarks.inheritance.ImmutableSubtypeOfMutableSupertype.class
org.mutabilitydetector.benchmarks.inheritance.ImmutableSubtypeWithNoSuperclass.class
org.mutabilitydetector.benchmarks.inheritance.ImmutableSubtypeOfImmutableSupertype.class
org.mutabilitydetector.benchmarks.inheritance.MutableSupertype.class
org.mutabilitydetector.benchmarks.inheritance.MutableSubtypeOfMutableSupertype.class
org.mutabilitydetector.benchmarks.inheritance.ImmutableSupertype.class
org.mutabilitydetector.benchmarks.inheritance.MutableSubtypeOfImmutableSupertype.class
org.mutabilitydetector.benchmarks.ImmutableWhenArrayFieldIsStatic.class
org.mutabilitydetector.benchmarks.ImmutableWithLazilyLoadedReturnValue.class
org.mutabilitydetector.benchmarks.ImmutablePossiblyThreadsafeClass.class
org.mutabilitydetector.benchmarks.ImmutableProvidedOtherClassIsImmutable.class
org.mutabilitydetector.benchmarks.PublishTarget.class
org.mutabilitydetector.benchmarks.MutableByExtendingMutableType.class
org.mutabilitydetector.benchmarks.sealed.SealedImmutable.class
org.mutabilitydetector.benchmarks.BadPracticeByPublishingReference.class
org.mutabilitydetector.benchmarks.MutableByHavingProtectedNonFinalField.class
org.mutabilitydetector.benchmarks.MutableByAssigningAbstractTypeToField$AbstractStringContainer.class
org.mutabilitydetector.benchmarks.types.AbstractType.class
org.mutabilitydetector.benchmarks.types.ClassWithAllPrimitives.class
org.mutabilitydetector.benchmarks.types.ClassWithAllPrimitives$Char.class
org.mutabilitydetector.benchmarks.types.ClassWithAllPrimitives$Byte.class
org.mutabilitydetector.benchmarks.types.EnumType.class
org.mutabilitydetector.benchmarks.types.ClassWithAllPrimitives$Boolean.class
org.mutabilitydetector.benchmarks.types.ClassWithAllPrimitives$Short.class
org.mutabilitydetector.benchmarks.types.ClassWithAllPrimitives$Float.class
org.mutabilitydetector.benchmarks.types.ClassWithAllPrimitives$Long.class
org.mutabilitydetector.benchmarks.types.ClassWithAllPrimitives$Int.class
org.mutabilitydetector.benchmarks.types.AbstractType$ImmutableSubtypeOfAbstractType.class
org.mutabilitydetector.benchmarks.types.ClassWithAllPrimitives$Double.class
org.mutabilitydetector.benchmarks.types.InterfaceType.class
org.mutabilitydetector.benchmarks.types.ConcreteType.class
org.mutabilitydetector.benchmarks.types.ClassWithAllPrimitives$Array.class
org.mutabilitydetector.benchmarks.MutableByHavingPublicNonFinalField.class
org.mutabilitydetector.benchmarks.settermethod.MutableByHavingSetterMethod.class
org.mutabilitydetector.benchmarks.settermethod.ImmutableUsingPrivateFieldSettingMethod.class
org.mutabilitydetector.benchmarks.settermethod.SetsFieldsOfDifferentTypes$SetsByte.class
org.mutabilitydetector.benchmarks.settermethod.SetsFieldsOfDifferentTypes$SetsChar.class
org.mutabilitydetector.benchmarks.settermethod.MutableByAssigningFieldOnInstanceWithinStaticMethod.class
org.mutabilitydetector.benchmarks.settermethod.SetsFieldsOfDifferentTypes$SetsReference.class
org.mutabilitydetector.benchmarks.settermethod.AssignMyField.class
org.mutabilitydetector.benchmarks.settermethod.SetsFieldsOfDifferentTypes$SetsLong.class
org.mutabilitydetector.benchmarks.settermethod.MutableBySettingFieldOnThisInstanceAndOtherInstance.class
org.mutabilitydetector.benchmarks.settermethod.FieldObject.class
org.mutabilitydetector.benchmarks.settermethod.SetsFieldsOfDifferentTypes$SetsInt.class
org.mutabilitydetector.benchmarks.settermethod.ImmutableWithMutatingStaticFactoryMethod.class
org.mutabilitydetector.benchmarks.settermethod.ImmutableButSetsPrivateFieldOfInstanceOfSelf.class
org.mutabilitydetector.benchmarks.settermethod.MutableBySettingFieldOfField.class
org.mutabilitydetector.benchmarks.settermethod.StillMutableSubclass.class
org.mutabilitydetector.benchmarks.settermethod.SetsFieldsOfDifferentTypes$SetsObjectArrayArray.class
org.mutabilitydetector.benchmarks.settermethod.SetsFieldsOfDifferentTypes$SetsShort.class
org.mutabilitydetector.benchmarks.settermethod.SetsFieldsOfDifferentTypes$SetsObjectArray.class
org.mutabilitydetector.benchmarks.settermethod.ImmutableButSetsFieldOfOtherClass.class
org.mutabilitydetector.benchmarks.settermethod.SetsFieldsOfDifferentTypes$SetsDouble.class
org.mutabilitydetector.benchmarks.settermethod.IndirectField.class
org.mutabilitydetector.benchmarks.settermethod.SetsFieldsOfDifferentTypes$SetsBoolean.class
org.mutabilitydetector.benchmarks.settermethod.SetsFieldsOfDifferentTypes$SetsFloat.class
org.mutabilitydetector.benchmarks.settermethod.SetsFieldsOfDifferentTypes.class
org.mutabilitydetector.benchmarks.circular.ImmutableClassB.class
org.mutabilitydetector.benchmarks.circular.CircularReferenceClasses.class
org.mutabilitydetector.benchmarks.circular.ImmutableClassA.class
org.mutabilitydetector.benchmarks.ImmutableExample.class
org.mutabilitydetector.benchmarks.MutableFieldInterface.class
org.mutabilitydetector.benchmarks.FieldFactory.class
org.mutabilitydetector.benchmarks.ImmutableProvidedOtherClassIsImmutable$ThisHasToBeImmutable.class
org.mutabilitydetector.benchmarks.ImmutableField.class
org.mutabilitydetector.benchmarks.ImmutableWithIndirectlyConstructedFieldInConcreteType.class
org.mutabilitydetector.benchmarks.Fakeout.class
org.mutabilitydetector.benchmarks.MutableByHavingMutableFieldAssigned.class
org.mutabilitydetector.benchmarks.escapedthis.Unsafe$SetThisReferenceAsFieldOfOtherInstance.class
org.mutabilitydetector.benchmarks.escapedthis.Unsafe$ThisPassedToPrivateStaticMethodWhichDoesNotPublishTheReference.class
org.mutabilitydetector.benchmarks.escapedthis.Unsafe$SaveThisReferenceAsStaticFieldOfThisClass.class
org.mutabilitydetector.benchmarks.escapedthis.Unsafe$PassAnonymousInnerClassWithImplicitReferenceToThis.class
org.mutabilitydetector.benchmarks.escapedthis.Unsafe$PassThisReferenceToStaticObject.class
org.mutabilitydetector.benchmarks.escapedthis.Safe$JustAssignTheReference.class
org.mutabilitydetector.benchmarks.escapedthis.Unsafe$PassInnerClassWithImplicitReferenceToThis$InnerClass.class
org.mutabilitydetector.benchmarks.escapedthis.Unsafe$PassThisReferenceToStaticMethod.class
org.mutabilitydetector.benchmarks.escapedthis.Unsafe$PassAnonymousInnerClassWithImplicitReferenceToThis$1.class
org.mutabilitydetector.benchmarks.escapedthis.Unsafe$PassThisReferenceToParameter.class
org.mutabilitydetector.benchmarks.escapedthis.Unsafe$Anonymous.class
org.mutabilitydetector.benchmarks.escapedthis.Unsafe$1.class
org.mutabilitydetector.benchmarks.escapedthis.Unsafe.class
org.mutabilitydetector.benchmarks.escapedthis.Safe$PassThisReferenceToClassWhichDoesNotPublishIt.class
org.mutabilitydetector.benchmarks.escapedthis.Unsafe$PassInnerClassWithImplicitReferenceToThis.class
org.mutabilitydetector.benchmarks.escapedthis.Unsafe$ThisPassedToOtherObject.class
org.mutabilitydetector.benchmarks.escapedthis.Safe$SaveThisReferenceToPrivateInstanceField.class
org.mutabilitydetector.benchmarks.escapedthis.GiveMeYourThisReference.class
org.mutabilitydetector.benchmarks.escapedthis.Unsafe$ThisPassedToPrivateStaticMethodWhichDoesPublishReference.class
org.mutabilitydetector.benchmarks.escapedthis.Safe.class
org.mutabilitydetector.benchmarks.MutableByHavingArrayTypeAsField.class
org.mutabilitydetector.benchmarks.MutableByHavingDefaultVisibleNonFinalField.class
org.mutabilitydetector.benchmarks.IFieldFactory.class
org.mutabilitydetector.benchmarks.MutableByAssigningAbstractTypeToField.class
org.mutabilitydetector.benchmarks.MutableExample.class
org.mutabilitydetector.IAnalysisSession$IsImmutable.class
org.mutabilitydetector.CheckerReasonDetail.class
org.mutabilitydetector.MutabilityCheckerFactory.class
org.mutabilitydetector.IAnalysisSession$AnalysisError.class
org.mutabilitydetector.AnalysisSession.class
org.mutabilitydetector.CheckerRunner.class
org.mutabilitydetector.IAnalysisSession.class
org.mutabilitydetector.CheckerRunnerFactory.class
org.mutabilitydetector.AllChecksRunner.class
org.mutabilitydetector.MutabilityReason.class
org.mutabilitydetector.asmoverride.CustomClassLoadingSimpleVerifier.class
org.mutabilitydetector.ICheckerRunnerFactory.class
org.mutabilitydetector.visitor.FieldVisitorAdapter.class
org.mutabilitydetector.visitor.MethodVisitorAdapter.class
META-INF/maven/org.mutabilitydetector/MutabilityDetector/pom.xml
META-INF/maven/org.mutabilitydetector/MutabilityDetector/pom.properties
org.mutabilitydetector.repackaged.org.hamcrest.BaseDescription.class
org.mutabilitydetector.repackaged.org.hamcrest.BaseMatcher.class
org.mutabilitydetector.repackaged.org.hamcrest.core.AllOf.class
org.mutabilitydetector.repackaged.org.hamcrest.core.AnyOf.class
org.mutabilitydetector.repackaged.org.hamcrest.core.CombinableMatcher.class
org.mutabilitydetector.repackaged.org.hamcrest.core.DescribedAs.class
org.mutabilitydetector.repackaged.org.hamcrest.core.Every.class
org.mutabilitydetector.repackaged.org.hamcrest.core.Is.class
org.mutabilitydetector.repackaged.org.hamcrest.core.IsAnything.class
org.mutabilitydetector.repackaged.org.hamcrest.core.IsCollectionContaining.class
org.mutabilitydetector.repackaged.org.hamcrest.core.IsEqual.class
org.mutabilitydetector.repackaged.org.hamcrest.core.IsInstanceOf.class
org.mutabilitydetector.repackaged.org.hamcrest.core.IsNot.class
org.mutabilitydetector.repackaged.org.hamcrest.core.IsNull.class
org.mutabilitydetector.repackaged.org.hamcrest.core.IsSame.class
org.mutabilitydetector.repackaged.org.hamcrest.core.ShortcutCombination.class
org.mutabilitydetector.repackaged.org.hamcrest.core.StringContains.class
org.mutabilitydetector.repackaged.org.hamcrest.core.StringEndsWith.class
org.mutabilitydetector.repackaged.org.hamcrest.core.StringStartsWith.class
org.mutabilitydetector.repackaged.org.hamcrest.core.SubstringMatcher.class
org.mutabilitydetector.repackaged.org.hamcrest.CoreMatchers.class
org.mutabilitydetector.repackaged.org.hamcrest.CustomMatcher.class
org.mutabilitydetector.repackaged.org.hamcrest.CustomTypeSafeMatcher.class
org.mutabilitydetector.repackaged.org.hamcrest.Description$NullDescription.class
org.mutabilitydetector.repackaged.org.hamcrest.Description.class
org.mutabilitydetector.repackaged.org.hamcrest.DiagnosingMatcher.class
org.mutabilitydetector.repackaged.org.hamcrest.Factory.class
org.mutabilitydetector.repackaged.org.hamcrest.FeatureMatcher.class
org.mutabilitydetector.repackaged.org.hamcrest.internal.ArrayIterator.class
org.mutabilitydetector.repackaged.org.hamcrest.internal.ReflectiveTypeFinder.class
org.mutabilitydetector.repackaged.org.hamcrest.internal.SelfDescribingValue.class
org.mutabilitydetector.repackaged.org.hamcrest.internal.SelfDescribingValueIterator.class
org.mutabilitydetector.repackaged.org.hamcrest.Matcher.class
org.mutabilitydetector.repackaged.org.hamcrest.MatcherAssert.class
org.mutabilitydetector.repackaged.org.hamcrest.SelfDescribing.class
org.mutabilitydetector.repackaged.org.hamcrest.StringDescription.class
org.mutabilitydetector.repackaged.org.hamcrest.TypeSafeDiagnosingMatcher.class
org.mutabilitydetector.repackaged.org.hamcrest.TypeSafeMatcher.class
META-INF/maven/org.hamcrest/hamcrest-core/pom.xml
META-INF/maven/org.hamcrest/hamcrest-core/pom.properties
org.mutabilitydetector.repackaged.com.google.classpath.ClassPath.class
org.mutabilitydetector.repackaged.com.google.classpath.ClassPathFactory.class
org.mutabilitydetector.repackaged.com.google.classpath.CompositeClassPath.class
org.mutabilitydetector.repackaged.com.google.classpath.DirectoryClassPath$DirectoryFilter.class
org.mutabilitydetector.repackaged.com.google.classpath.DirectoryClassPath$FileFileFilter.class
org.mutabilitydetector.repackaged.com.google.classpath.DirectoryClassPath.class
org.mutabilitydetector.repackaged.com.google.classpath.JARClassPath$1.class
org.mutabilitydetector.repackaged.com.google.classpath.JARClassPath$Package.class
org.mutabilitydetector.repackaged.com.google.classpath.JARClassPath.class
org.mutabilitydetector.repackaged.com.google.classpath.RegExpResourceFilter.class
org.mutabilitydetector.repackaged.com.google.classpath.ResourceFilter.class
org.mutabilitydetector.repackaged.com.google.classpath.ResourceFinder.class
META-INF/maven/com.google.classpath-explorer/classpath-explorer/pom.xml
META-INF/maven/com.google.classpath-explorer/classpath-explorer/pom.properties
org.mutabilitydetector.repackaged.org.objectweb.asm.AnnotationVisitor.class
org.mutabilitydetector.repackaged.org.objectweb.asm.AnnotationWriter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.Attribute.class
org.mutabilitydetector.repackaged.org.objectweb.asm.ByteVector.class
org.mutabilitydetector.repackaged.org.objectweb.asm.ClassAdapter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.ClassReader.class
org.mutabilitydetector.repackaged.org.objectweb.asm.ClassVisitor.class
org.mutabilitydetector.repackaged.org.objectweb.asm.ClassWriter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.Edge.class
org.mutabilitydetector.repackaged.org.objectweb.asm.FieldVisitor.class
org.mutabilitydetector.repackaged.org.objectweb.asm.FieldWriter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.Frame.class
org.mutabilitydetector.repackaged.org.objectweb.asm.Handler.class
org.mutabilitydetector.repackaged.org.objectweb.asm.Item.class
org.mutabilitydetector.repackaged.org.objectweb.asm.Label.class
org.mutabilitydetector.repackaged.org.objectweb.asm.MethodAdapter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.MethodVisitor.class
org.mutabilitydetector.repackaged.org.objectweb.asm.MethodWriter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.Opcodes.class
org.mutabilitydetector.repackaged.org.objectweb.asm.Type.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.AdviceAdapter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.AnalyzerAdapter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.CodeSizeEvaluator.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.EmptyVisitor.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.GeneratorAdapter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.JSRInlinerAdapter$1.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.JSRInlinerAdapter$Instantiation.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.JSRInlinerAdapter$Subroutine.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.JSRInlinerAdapter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.LocalVariablesSorter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.Method.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.Remapper.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.RemappingAnnotationAdapter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.RemappingClassAdapter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.RemappingFieldAdapter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.RemappingMethodAdapter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.RemappingSignatureAdapter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.SerialVersionUIDAdder$Item.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.SerialVersionUIDAdder.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.SimpleRemapper.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.StaticInitMerger.class
org.mutabilitydetector.repackaged.org.objectweb.asm.commons.TableSwitchGenerator.class
org.mutabilitydetector.repackaged.org.objectweb.asm.signature.SignatureReader.class
org.mutabilitydetector.repackaged.org.objectweb.asm.signature.SignatureVisitor.class
org.mutabilitydetector.repackaged.org.objectweb.asm.signature.SignatureWriter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.AbstractInsnNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.AnnotationNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.ClassNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.FieldInsnNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.FieldNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.FrameNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.IincInsnNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.InnerClassNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.InsnList$1.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.InsnList$InsnListIterator.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.InsnList.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.InsnNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.IntInsnNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.JumpInsnNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.LabelNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.LdcInsnNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.LineNumberNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.LocalVariableNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.LookupSwitchInsnNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.MemberNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.MethodInsnNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.MethodNode$1.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.MethodNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.MultiANewArrayInsnNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.TableSwitchInsnNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.TryCatchBlockNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.TypeInsnNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.VarInsnNode.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.analysis.Analyzer.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.analysis.AnalyzerException.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.analysis.BasicInterpreter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.analysis.BasicValue.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.analysis.BasicVerifier.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.analysis.Frame.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.analysis.Interpreter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.analysis.SimpleVerifier.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.analysis.SmallSet.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.analysis.SourceInterpreter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.analysis.SourceValue.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.analysis.Subroutine.class
org.mutabilitydetector.repackaged.org.objectweb.asm.tree.analysis.Value.class
org.mutabilitydetector.repackaged.org.objectweb.asm.util.ASMifiable.class
org.mutabilitydetector.repackaged.org.objectweb.asm.util.ASMifierAbstractVisitor.class
org.mutabilitydetector.repackaged.org.objectweb.asm.util.ASMifierAnnotationVisitor.class
org.mutabilitydetector.repackaged.org.objectweb.asm.util.ASMifierClassVisitor.class
org.mutabilitydetector.repackaged.org.objectweb.asm.util.ASMifierFieldVisitor.class
org.mutabilitydetector.repackaged.org.objectweb.asm.util.ASMifierMethodVisitor.class
org.mutabilitydetector.repackaged.org.objectweb.asm.util.AbstractVisitor.class
org.mutabilitydetector.repackaged.org.objectweb.asm.util.CheckAnnotationAdapter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.util.CheckClassAdapter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.util.CheckFieldAdapter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.util.CheckMethodAdapter$1.class
org.mutabilitydetector.repackaged.org.objectweb.asm.util.CheckMethodAdapter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.util.CheckSignatureAdapter.class
org.mutabilitydetector.repackaged.org.objectweb.asm.util.TraceAbstractVisitor.class
org.mutabilitydetector.repackaged.org.objectweb.asm.util.TraceAnnotationVisitor.class
org.mutabilitydetector.repackaged.org.objectweb.asm.util.TraceClassVisitor.class
org.mutabilitydetector.repackaged.org.objectweb.asm.util.TraceFieldVisitor.class
org.mutabilitydetector.repackaged.org.objectweb.asm.util.TraceMethodVisitor.class
org.mutabilitydetector.repackaged.org.objectweb.asm.util.TraceSignatureVisitor.class
org.mutabilitydetector.repackaged.org.objectweb.asm.util.Traceable.class
org.mutabilitydetector.repackaged.org.objectweb.asm.xml.ASMContentHandler$1.class
org.mutabilitydetector.repackaged.org.objectweb.asm.xml.ASMContentHandler$AnnotationDefaultRule.class
org.mutabilitydetector.repackaged.org.objectweb.asm.xml.ASMContentHandler$AnnotationParameterRule.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
mockito-core-1.8.0.jar
/org.mockito/mockito-core/1.8.0
查看mockito-core所有版本文件
junit-dep-4.8.jar
/junit/junit-dep/4.8
查看junit-dep所有版本文件
hamcrest-library-1.3.RC2.jar
/org.hamcrest/hamcrest-library/1.3.RC2
查看hamcrest-library所有版本文件
|