├── .build-without-test.sh ├── .build.sh ├── .git.pre-commit ├── .github ├── renovate.json └── workflows │ └── gradle-wrapper-validation.yml-OLD ├── .gitignore ├── .travis-build-without-test.sh ├── .travis-build.sh ├── .travis.yml ├── LICENSE.txt ├── README.md ├── annotation-file-utilities ├── README.txt ├── annotation-file-format.bbl ├── annotation-file-format.bib ├── annotation-file-format.tex ├── annotation-file-utilities.html ├── build.gradle ├── build.properties ├── build.xml ├── changelog.html ├── design.tex ├── dev-scripts │ ├── test-allTests.sh │ ├── test-downstream.sh │ ├── test-misc.sh │ └── test-typecheck.sh ├── figures │ ├── Makefile │ ├── corresp.dot │ ├── dataflow.dot │ ├── nocast.dot │ ├── scene-lib-type-hierarchy.svg │ ├── tool-relations.svg │ └── typecast.dot ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── lib │ ├── README │ └── javac-9+181-r4173-1.jar ├── scripts │ ├── anncat │ ├── extract-annotations │ ├── extract-annotations.bat │ ├── insert-annotations │ ├── insert-annotations-to-source │ ├── insert-annotations-to-source.bat │ └── insert-annotations.bat ├── settings.gradle ├── src │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── checkerframework │ │ │ └── afu │ │ │ ├── annotator │ │ │ ├── Main.java │ │ │ ├── Source.java │ │ │ ├── find │ │ │ │ ├── ASTPathCriterion.java │ │ │ │ ├── AnnotationInsertion.java │ │ │ │ ├── BoundLocationCriterion.java │ │ │ │ ├── CallCriterion.java │ │ │ │ ├── CaseUtils.java │ │ │ │ ├── CastCriterion.java │ │ │ │ ├── CastInsertion.java │ │ │ │ ├── ClassBoundCriterion.java │ │ │ │ ├── CloseParenthesisInsertion.java │ │ │ │ ├── ConstructorInsertion.java │ │ │ │ ├── Criteria.java │ │ │ │ ├── Criterion.java │ │ │ │ ├── EnclosedByCriterion.java │ │ │ │ ├── ExtImplsLocationCriterion.java │ │ │ │ ├── FieldCriterion.java │ │ │ │ ├── GenericArrayLocationCriterion.java │ │ │ │ ├── InClassCriterion.java │ │ │ │ ├── InFieldInitCriterion.java │ │ │ │ ├── InInitBlockCriterion.java │ │ │ │ ├── InMethodCriterion.java │ │ │ │ ├── InPackageCriterion.java │ │ │ │ ├── Insertion.java │ │ │ │ ├── Insertions.java │ │ │ │ ├── InstanceOfCriterion.java │ │ │ │ ├── IntersectionTypeLocationCriterion.java │ │ │ │ ├── IsCriterion.java │ │ │ │ ├── IsSigMethodCriterion.java │ │ │ │ ├── LambdaCriterion.java │ │ │ │ ├── LocalVariableCriterion.java │ │ │ │ ├── MemberReferenceCriterion.java │ │ │ │ ├── MethodBoundCriterion.java │ │ │ │ ├── NewCriterion.java │ │ │ │ ├── NewInsertion.java │ │ │ │ ├── NotInMethodCriterion.java │ │ │ │ ├── PackageCriterion.java │ │ │ │ ├── ParamCriterion.java │ │ │ │ ├── ReceiverCriterion.java │ │ │ │ ├── ReceiverInsertion.java │ │ │ │ ├── ReturnTypeCriterion.java │ │ │ │ ├── TreeFinder.java │ │ │ │ ├── TypeArgumentCriterion.java │ │ │ │ ├── TypeBoundExtendsInsertion.java │ │ │ │ ├── TypedInsertion.java │ │ │ │ └── package-info.java │ │ │ ├── scanner │ │ │ │ ├── AnonymousClassScanner.java │ │ │ │ ├── CastScanner.java │ │ │ │ ├── CommonScanner.java │ │ │ │ ├── InitBlockScanner.java │ │ │ │ ├── InstanceOfScanner.java │ │ │ │ ├── LambdaScanner.java │ │ │ │ ├── LocalClassScanner.java │ │ │ │ ├── LocalVariableScanner.java │ │ │ │ ├── MemberReferenceScanner.java │ │ │ │ ├── MethodCallScanner.java │ │ │ │ ├── MethodOffsetClassVisitor.java │ │ │ │ ├── NewScanner.java │ │ │ │ └── TreePathUtil.java │ │ │ └── specification │ │ │ │ ├── CriterionList.java │ │ │ │ └── IndexFileSpecification.java │ │ │ └── scenelib │ │ │ ├── Annotation.java │ │ │ ├── AnnotationBuilder.java │ │ │ ├── AnnotationFactory.java │ │ │ ├── Annotations.java │ │ │ ├── ArrayBuilder.java │ │ │ ├── el │ │ │ ├── ABlock.java │ │ │ ├── AClass.java │ │ │ ├── ADeclaration.java │ │ │ ├── AElement.java │ │ │ ├── AExpression.java │ │ │ ├── AField.java │ │ │ ├── AMethod.java │ │ │ ├── AScene.java │ │ │ ├── ATypeElement.java │ │ │ ├── ATypeElementWithType.java │ │ │ ├── AnnotationDef.java │ │ │ ├── BoundLocation.java │ │ │ ├── DefCollector.java │ │ │ ├── DefException.java │ │ │ ├── ElementVisitor.java │ │ │ ├── LocalLocation.java │ │ │ ├── RelativeLocation.java │ │ │ ├── TypeASTMapper.java │ │ │ ├── TypeIndexLocation.java │ │ │ ├── TypePathEntry.java │ │ │ └── package-info.java │ │ │ ├── field │ │ │ ├── AFTVisitor.java │ │ │ ├── AnnotationAFT.java │ │ │ ├── AnnotationFieldType.java │ │ │ ├── ArrayAFT.java │ │ │ ├── BasicAFT.java │ │ │ ├── ClassTokenAFT.java │ │ │ ├── EnumAFT.java │ │ │ ├── ScalarAFT.java │ │ │ └── package-info.java │ │ │ ├── io │ │ │ ├── ASTIndex.java │ │ │ ├── ASTPath.java │ │ │ ├── ASTRecord.java │ │ │ ├── DebugWriter.java │ │ │ ├── IOUtils.java │ │ │ ├── IndexFileParser.java │ │ │ ├── IndexFileWriter.java │ │ │ ├── JavapParser.java │ │ │ ├── ParseException.java │ │ │ ├── classfile │ │ │ │ ├── ClassAnnotationSceneReader.java │ │ │ │ ├── ClassAnnotationSceneWriter.java │ │ │ │ ├── ClassFileReader.java │ │ │ │ ├── ClassFileWriter.java │ │ │ │ ├── CodeOffsetAdapter.java │ │ │ │ ├── InvalidTypeAnnotationException.java │ │ │ │ ├── MethodCodeOffsetAdapter.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ ├── tools │ │ │ ├── Anncat.java │ │ │ └── IndexFileMerger.java │ │ │ ├── toys │ │ │ ├── BalanceEnum.java │ │ │ ├── ClassTokenAnnotation.java │ │ │ ├── FancierAnnotation.java │ │ │ ├── FancyAnnotation.java │ │ │ ├── SimplerAnnotation.java │ │ │ ├── SimplerInterface.java │ │ │ ├── SubAnnotation.java │ │ │ ├── ValuesAnnotation.java │ │ │ └── package-info.java │ │ │ ├── type │ │ │ ├── ArrayType.java │ │ │ ├── BoundedType.java │ │ │ ├── DeclaredType.java │ │ │ └── Type.java │ │ │ └── util │ │ │ ├── CommandLineUtils.java │ │ │ ├── EqualByStringRepresentation.java │ │ │ ├── JVMNames.java │ │ │ ├── MethodRecorder.java │ │ │ ├── SceneOps.java │ │ │ ├── Strings.java │ │ │ └── coll │ │ │ ├── KeyedSet.java │ │ │ ├── Keyer.java │ │ │ ├── LinkedHashKeyedSet.java │ │ │ ├── VivifyingMap.java │ │ │ └── WrapperMap.java │ └── test │ │ ├── java │ │ ├── annotations │ │ │ └── tests │ │ │ │ └── classfile │ │ │ │ └── foo │ │ │ │ ├── A.java │ │ │ │ ├── B.java │ │ │ │ ├── C.java │ │ │ │ ├── D.java │ │ │ │ ├── E.java │ │ │ │ ├── F.java │ │ │ │ ├── G.java │ │ │ │ ├── OnPackage.java │ │ │ │ └── package-info.java │ │ └── org │ │ │ └── checkerframework │ │ │ └── afu │ │ │ └── scenelib │ │ │ └── test │ │ │ ├── classfile │ │ │ ├── AnnotationVerifier.java │ │ │ ├── AnnotationsTest.java │ │ │ ├── TestSceneLib.java │ │ │ └── package-info.java │ │ │ └── executable │ │ │ ├── Example.java │ │ │ └── package-info.java │ │ └── resources │ │ ├── annotations-expected │ │ └── tests │ │ │ └── classfile │ │ │ └── cases │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── TestClassEmpty.class │ │ │ ├── TestClassEmpty_Expected.class │ │ │ ├── TestClassNonEmpty.class │ │ │ ├── TestClassNonEmpty_Expected.class │ │ │ ├── TestFieldGeneric.class │ │ │ ├── TestFieldGenericSmall.class │ │ │ ├── TestFieldGenericSmall_Expected.class │ │ │ ├── TestFieldGeneric_Expected.class │ │ │ ├── TestFieldSimple.class │ │ │ ├── TestFieldSimple_Expected.class │ │ │ ├── TestLocalVariable.class │ │ │ ├── TestLocalVariableA.class │ │ │ ├── TestLocalVariableA_Expected.class │ │ │ ├── TestLocalVariableGenericArray.class │ │ │ ├── TestLocalVariableGenericArray_Expected.class │ │ │ ├── TestLocalVariable_Expected.class │ │ │ ├── TestMethodReceiver.class │ │ │ ├── TestMethodReceiver_Expected.class │ │ │ ├── TestMethodReturnTypeGenericArray.class │ │ │ ├── TestMethodReturnTypeGenericArray_Expected.class │ │ │ ├── TestObjectCreation.class │ │ │ ├── TestObjectCreationGenericArray.class │ │ │ ├── TestObjectCreationGenericArray_Expected.class │ │ │ ├── TestObjectCreation_Expected.class │ │ │ ├── TestTypeTest.class │ │ │ ├── TestTypeTest_Expected.class │ │ │ ├── TestTypecast.class │ │ │ ├── TestTypecastGenericArray.class │ │ │ ├── TestTypecastGenericArray_Expected.class │ │ │ ├── TestTypecast_Expected.class │ │ │ ├── package-info.class │ │ │ └── package-info_Expected.class │ │ ├── annotations │ │ └── tests │ │ │ ├── classfile │ │ │ ├── README.md │ │ │ ├── all-annotations.jaif │ │ │ └── cases │ │ │ │ ├── TestClassEmpty.jaif │ │ │ │ ├── TestClassEmpty.java │ │ │ │ ├── TestClassNonEmpty.jaif │ │ │ │ ├── TestClassNonEmpty.java │ │ │ │ ├── TestFieldGeneric.jaif │ │ │ │ ├── TestFieldGeneric.java │ │ │ │ ├── TestFieldGenericSmall.jaif │ │ │ │ ├── TestFieldGenericSmall.java │ │ │ │ ├── TestFieldSimple.jaif │ │ │ │ ├── TestFieldSimple.java │ │ │ │ ├── TestLocalVariable.jaif │ │ │ │ ├── TestLocalVariable.java │ │ │ │ ├── TestLocalVariableA.jaif │ │ │ │ ├── TestLocalVariableA.java │ │ │ │ ├── TestLocalVariableGenericArray.jaif │ │ │ │ ├── TestLocalVariableGenericArray.java │ │ │ │ ├── TestMethodReceiver.jaif │ │ │ │ ├── TestMethodReceiver.java │ │ │ │ ├── TestMethodReturnTypeGenericArray.jaif │ │ │ │ ├── TestMethodReturnTypeGenericArray.java │ │ │ │ ├── TestObjectCreation.jaif │ │ │ │ ├── TestObjectCreation.java │ │ │ │ ├── TestObjectCreationGenericArray.jaif │ │ │ │ ├── TestObjectCreationGenericArray.java │ │ │ │ ├── TestTypeTest.jaif │ │ │ │ ├── TestTypeTest.java │ │ │ │ ├── TestTypecast.jaif │ │ │ │ ├── TestTypecast.java │ │ │ │ ├── TestTypecastGenericArray.jaif │ │ │ │ ├── TestTypecastGenericArray.java │ │ │ │ ├── package-info.jaif │ │ │ │ └── package-info.java │ │ │ └── executable │ │ │ ├── README.md │ │ │ ├── example-input.jaif │ │ │ ├── example-output.jaif.goal │ │ │ └── example-stdout.jaif.goal │ │ └── org │ │ └── checkerframework │ │ └── afu │ │ └── scenelib │ │ └── test │ │ └── classfile │ │ ├── README.md │ │ ├── test1.jaif │ │ └── test2.jaif └── tests │ ├── -SEE-THE-MAKEFILE- │ ├── ASTInsert.goal │ ├── ASTInsert.jaif │ ├── ASTInsert.java │ ├── Abbreviation.goal │ ├── Abbreviation.jaif │ ├── Abbreviation.java │ ├── AnnotationEnumFieldInsertion.goal │ ├── AnnotationEnumFieldInsertion.jaif │ ├── AnnotationEnumFieldInsertion.java │ ├── AnonInner.goal │ ├── AnonInner.jaif │ ├── AnonInner.java │ ├── ArrayLiteral.goal │ ├── ArrayLiteral.jaif │ ├── ArrayLiteral.java │ ├── ArrayMultiDim.goal │ ├── ArrayMultiDim.jaif │ ├── ArrayMultiDim.java │ ├── ArrayParamSimple.goal │ ├── ArrayParamSimple.jaif │ ├── ArrayParamSimple.java │ ├── ArrayReturnTypeSimple.goal │ ├── ArrayReturnTypeSimple.jaif │ ├── ArrayReturnTypeSimple.java │ ├── BoundClassMultiple.goal │ ├── BoundClassMultiple.jaif │ ├── BoundClassMultiple.java │ ├── BoundClassSimple.goal │ ├── BoundClassSimple.jaif │ ├── BoundClassSimple.java │ ├── BoundMethodMultiple.goal │ ├── BoundMethodMultiple.jaif │ ├── BoundMethodMultiple.java │ ├── BoundMethodSimple.goal │ ├── BoundMethodSimple.jaif │ ├── BoundMethodSimple.java │ ├── BoundZero.goal │ ├── BoundZero.jaif │ ├── BoundZero.java │ ├── CastInsert.goal │ ├── CastInsert.jaif │ ├── CastInsert.java │ ├── ClassAnnotationParameter.goal │ ├── ClassAnnotationParameter.jaif │ ├── ClassAnnotationParameter.java │ ├── ClassListAnnotationParameter.goal │ ├── ClassListAnnotationParameter.jaif │ ├── ClassListAnnotationParameter.java │ ├── ClassSimple.goal │ ├── ClassSimple.jaif │ ├── ClassSimple.java │ ├── ComplexLocationOne.goal │ ├── ComplexLocationOne.jaif │ ├── ComplexLocationOne.java │ ├── ComplexLocationTwo.goal │ ├── ComplexLocationTwo.jaif │ ├── ComplexLocationTwo.java │ ├── ConstructorParam.goal │ ├── ConstructorParam.jaif │ ├── ConstructorParam.java │ ├── ConstructorParamMultiple.goal │ ├── ConstructorParamMultiple.jaif │ ├── ConstructorParamMultiple.java │ ├── ConstructorReceivers.goal │ ├── ConstructorReceivers.jaif │ ├── ConstructorReceivers.java │ ├── ConstructorReturn.goal │ ├── ConstructorReturn.jaif │ ├── ConstructorReturn.java │ ├── Date.goal │ ├── Date.jaif │ ├── Date.java │ ├── DeclarationAnnotation.goal │ ├── DeclarationAnnotation.jaif │ ├── DeclarationAnnotation.java │ ├── DuplicateAnnotation.goal │ ├── DuplicateAnnotation.jaif │ ├── DuplicateAnnotation.java │ ├── DuplicateAnnotationNewArray.goal │ ├── DuplicateAnnotationNewArray.jaif │ ├── DuplicateAnnotationNewArray.java │ ├── EnumAnnotationParameter.goal │ ├── EnumAnnotationParameter.jaif │ ├── EnumAnnotationParameter.java │ ├── EnumListAnnotationParameter.goal │ ├── EnumListAnnotationParameter.jaif │ ├── EnumListAnnotationParameter.java │ ├── ExtImpl.goal │ ├── ExtImpl.jaif │ ├── ExtImpl.java │ ├── FieldGenericArray.goal │ ├── FieldGenericArray.jaif │ ├── FieldGenericArray.java │ ├── FieldMultiple.goal │ ├── FieldMultiple.jaif │ ├── FieldMultiple.java │ ├── FieldSimple.goal │ ├── FieldSimple.jaif │ ├── FieldSimple.java │ ├── FieldSimpleArray.goal │ ├── FieldSimpleArray.jaif │ ├── FieldSimpleArray.java │ ├── FieldSimpleGeneric.goal │ ├── FieldSimpleGeneric.jaif │ ├── FieldSimpleGeneric.java │ ├── GenericAnnoBound.goal │ ├── GenericAnnoBound.jaif │ ├── GenericAnnoBound.java │ ├── GenericArg.goal │ ├── GenericArg.jaif │ ├── GenericArg.java │ ├── GenericCell.goal │ ├── GenericCell.jaif │ ├── GenericCell.java │ ├── GenericCellDoubled.goal │ ├── GenericCellDoubled.jaif │ ├── GenericCellDoubled.java │ ├── GenericMultiLevel.goal │ ├── GenericMultiLevel.jaif │ ├── GenericMultiLevel.java │ ├── ImplicitUpper.goal │ ├── ImplicitUpper.jaif │ ├── ImplicitUpper.java │ ├── Initializers.goal │ ├── Initializers.jaif │ ├── Initializers.java │ ├── InnerClass.goal │ ├── InnerClass.jaif │ ├── InnerClass.java │ ├── InnerClassAnonymous.goal │ ├── InnerClassAnonymous.jaif │ ├── InnerClassAnonymous.java │ ├── InnerClassSimple.goal │ ├── InnerClassSimple.jaif │ ├── InnerClassSimple.java │ ├── InnerReceivers.goal │ ├── InnerReceivers.jaif │ ├── InnerReceivers.java │ ├── InnerTypeResolution.goal │ ├── InnerTypeResolution.jaif │ ├── InnerTypeResolution.java │ ├── InstanceOfMultiple.goal │ ├── InstanceOfMultiple.jaif │ ├── InstanceOfMultiple.java │ ├── InstanceOfSimple.goal │ ├── InstanceOfSimple.jaif │ ├── InstanceOfSimple.java │ ├── IntCell.goal │ ├── IntCell.jaif │ ├── IntCell.java │ ├── Issue156.goal │ ├── Issue156.jaif │ ├── Issue156.java │ ├── Issue216.goal │ ├── Issue216.jaif │ ├── Issue216.java │ ├── LambdaExpression.goal │ ├── LambdaExpression.jaif │ ├── LambdaExpression.java │ ├── LocalArray.goal │ ├── LocalArray.jaif │ ├── LocalArray.java │ ├── LocalClass.goal │ ├── LocalClass.jaif │ ├── LocalClass.java │ ├── LocalGeneric.goal │ ├── LocalGeneric.jaif │ ├── LocalGeneric.java │ ├── LocalGenericShadow.goal │ ├── LocalGenericShadow.jaif │ ├── LocalGenericShadow.java │ ├── LocalMultiple.goal │ ├── LocalMultiple.jaif │ ├── LocalMultiple.java │ ├── LocalMultipleManyMethods.goal │ ├── LocalMultipleManyMethods.jaif │ ├── LocalMultipleManyMethods.java │ ├── LocalMultipleManyMethodsShifted.goal │ ├── LocalMultipleManyMethodsShifted.jaif │ ├── LocalMultipleManyMethodsShifted.java │ ├── LocalSimple.goal │ ├── LocalSimple.jaif │ ├── LocalSimple.java │ ├── LocalSimpleMultiple.goal │ ├── LocalSimpleMultiple.jaif │ ├── LocalSimpleMultiple.java │ ├── LongInAnnotationArgumentArray.goal │ ├── LongInAnnotationArgumentArray.jaif │ ├── LongInAnnotationArgumentArray.java │ ├── Makefile │ ├── MatchReturnValue.goal │ ├── MatchReturnValue.jaif │ ├── MatchReturnValue.java │ ├── MemberReference.goal │ ├── MemberReference.jaif │ ├── MemberReference.java │ ├── MemberSelectTypes.goal │ ├── MemberSelectTypes.jaif │ ├── MemberSelectTypes.java │ ├── MethodCompoundType.goal │ ├── MethodCompoundType.jaif │ ├── MethodCompoundType.java │ ├── MethodLocalClass.goal │ ├── MethodLocalClass.jaif │ ├── MethodLocalClass.java │ ├── MethodMultiple.goal │ ├── MethodMultiple.jaif │ ├── MethodMultiple.java │ ├── NestedConstructorResultAnno.goal │ ├── NestedConstructorResultAnno.jaif │ ├── NestedConstructorResultAnno.java │ ├── NewArray.goal │ ├── NewArray.jaif │ ├── NewArray.java │ ├── NewGeneric.goal │ ├── NewGeneric.jaif │ ├── NewGeneric.java │ ├── NewInAnnotatedVariable.goal │ ├── NewInAnnotatedVariable.jaif │ ├── NewInAnnotatedVariable.java │ ├── NewMultiple.goal │ ├── NewMultiple.jaif │ ├── NewMultiple.java │ ├── NewPackage.goal │ ├── NewPackage.jaif │ ├── NewPackage.java │ ├── NewSimple.goal │ ├── NewSimple.jaif │ ├── NewSimple.java │ ├── NonClass.goal │ ├── NonClass.jaif │ ├── NonClass.java │ ├── NonStandardSpacing.goal │ ├── NonStandardSpacing.jaif │ ├── NonStandardSpacing.java │ ├── Package.goal │ ├── Package.jaif │ ├── Package.java │ ├── ParseType.goal │ ├── ParseType.jaif │ ├── ParseType.java │ ├── ReceiverWithThrows.goal │ ├── ReceiverWithThrows.jaif │ ├── ReceiverWithThrows.java │ ├── Receivers.goal │ ├── Receivers.jaif │ ├── Receivers.java │ ├── StringEscape.goal │ ├── StringEscape.jaif │ ├── StringEscape.java │ ├── TypeCastGeneric.goal │ ├── TypeCastGeneric.jaif │ ├── TypeCastGeneric.java │ ├── TypeCastMultiple.goal │ ├── TypeCastMultiple.jaif │ ├── TypeCastMultiple.java │ ├── TypeCastSimple.goal │ ├── TypeCastSimple.jaif │ ├── TypeCastSimple.java │ ├── TypeParamMethod.goal │ ├── TypeParamMethod.jaif │ ├── TypeParamMethod.java │ ├── Varargs.goal │ ├── Varargs.jaif │ ├── Varargs.java │ ├── VerifyDiffs.java │ ├── WildcardAnnoBound.goal │ ├── WildcardAnnoBound.jaif │ ├── WildcardAnnoBound.java │ ├── abbreviated │ ├── C.jaif │ ├── C0.goal │ ├── C0.java │ ├── C1.goal │ ├── C1.java │ ├── Makefile │ └── README.md │ ├── ad-hoc │ ├── Makefile │ ├── README │ └── bridge │ │ ├── C.java │ │ ├── Makefile │ │ └── README │ ├── converted │ ├── ASTInsert.jaif │ ├── AnonInner.jaif │ ├── ArrayMultiDim.jaif │ ├── ArrayParamSimple.jaif │ ├── ArrayReturnTypeSimple.jaif │ ├── BoundClassMultiple.jaif │ ├── BoundClassSimple.jaif │ ├── BoundMethodMultiple.jaif │ ├── BoundMethodSimple.jaif │ ├── CastInsert.jaif │ ├── ClassAnnotationParameter.jaif │ ├── ClassListAnnotationParameter.jaif │ ├── ClassSimple.jaif │ ├── ComplexLocationOne.jaif │ ├── ComplexLocationTwo.jaif │ ├── ConstructorParam.jaif │ ├── ConstructorParamMultiple.jaif │ ├── ConstructorReceivers.jaif │ ├── ConstructorReturn.jaif │ ├── Date.jaif │ ├── DeclarationAnnotation.jaif │ ├── DuplicateAnnotation.jaif │ ├── EnumAnnotationParameter.jaif │ ├── EnumListAnnotationParameter.jaif │ ├── ExtImpl.jaif │ ├── FieldGenericArray.jaif │ ├── FieldMultiple.jaif │ ├── FieldSimple.jaif │ ├── FieldSimpleArray.jaif │ ├── FieldSimpleGeneric.jaif │ ├── GenericAnnoBound.jaif │ ├── GenericArg.jaif │ ├── GenericCell.jaif │ ├── GenericCellDoubled.jaif │ ├── GenericMultiLevel.jaif │ ├── ImplicitUpper.jaif │ ├── Initializers.jaif │ ├── InnerClass.jaif │ ├── InnerClassAnonymous.jaif │ ├── InnerClassSimple.jaif │ ├── InnerReceivers.jaif │ ├── InnerTypeResolution.jaif │ ├── InstanceOfMultiple.jaif │ ├── InstanceOfSimple.jaif │ ├── IntCell.jaif │ ├── LocalArray.jaif │ ├── LocalClass.jaif │ ├── LocalGeneric.jaif │ ├── LocalGenericShadow.jaif │ ├── LocalMultiple.jaif │ ├── LocalMultipleManyMethods.jaif │ ├── LocalMultipleManyMethodsShifted.jaif │ ├── LocalSimple.jaif │ ├── LocalSimpleMultiple.jaif │ ├── Makefile │ ├── MatchReturnValue.jaif │ ├── MemberSelectTypes.jaif │ ├── MethodCompoundType.jaif │ ├── MethodMultiple.jaif │ ├── NewArray.jaif │ ├── NewGeneric.jaif │ ├── NewInAnnotatedVariable.jaif │ ├── NewMultiple.jaif │ ├── NewPackage.jaif │ ├── NewSimple.jaif │ ├── NonClass.jaif │ ├── NonStandardSpacing.jaif │ ├── Package.jaif │ ├── ParseType.jaif │ ├── ReceiverWithThrows.jaif │ ├── Receivers.jaif │ ├── TypeCastGeneric.jaif │ ├── TypeCastMultiple.jaif │ ├── TypeCastSimple.jaif │ ├── TypeParamMethod.jaif │ ├── Varargs.jaif │ ├── WildcardAnnoBound.jaif │ └── package-info.jaif │ ├── enum-imports │ ├── C.goal │ ├── C.jaif │ ├── C.java │ ├── Makefile │ └── README.md │ ├── issue155 │ ├── Issue155.goal │ ├── Issue155.jaif │ ├── Issue155.java │ └── Makefile │ ├── package-info.goal │ ├── package-info.jaif │ ├── package-info.java │ ├── source-extension │ ├── ClassTV3.goal │ ├── ClassTV3.jaif │ ├── ClassTV3.java │ ├── FieldNew.goal │ ├── FieldNew.jaif │ ├── FieldNew.java │ ├── FieldNewComplex.goal │ ├── FieldNewComplex.jaif │ ├── FieldNewComplex.java │ ├── LocalVariables.goal │ ├── LocalVariables.jaif │ ├── LocalVariables.java │ ├── Makefile │ ├── MethodNew.goal │ ├── MethodNew.jaif │ ├── MethodNew.java │ ├── SameName.goal │ ├── SameName.jaif │ ├── SameName.java │ ├── StaticInit.goal │ ├── StaticInit.jaif │ ├── StaticInit.java │ ├── TypeCastMultiple.goal │ ├── TypeCastMultiple.jaif │ ├── TypeCastMultiple.java │ ├── Wildcards.goal │ ├── Wildcards.jaif │ ├── Wildcards.java │ ├── WildcardsSuper.goal │ ├── WildcardsSuper.jaif │ └── WildcardsSuper.java │ └── system-test │ ├── Makefile │ ├── expected-annos-better-UNUSED.jaif │ ├── expected-annos.jaif │ ├── source-ann │ └── AnnotationTest.java │ └── source-plain │ └── AnnotationTest.java └── azure-pipelines.yml /.build-without-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/.build-without-test.sh -------------------------------------------------------------------------------- /.build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/.build.sh -------------------------------------------------------------------------------- /.git.pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/.git.pre-commit -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/gradle-wrapper-validation.yml-OLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/.github/workflows/gradle-wrapper-validation.yml-OLD -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis-build-without-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/.travis-build-without-test.sh -------------------------------------------------------------------------------- /.travis-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/.travis-build.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/README.md -------------------------------------------------------------------------------- /annotation-file-utilities/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/README.txt -------------------------------------------------------------------------------- /annotation-file-utilities/annotation-file-format.bbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/annotation-file-format.bbl -------------------------------------------------------------------------------- /annotation-file-utilities/annotation-file-format.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/annotation-file-format.bib -------------------------------------------------------------------------------- /annotation-file-utilities/annotation-file-format.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/annotation-file-format.tex -------------------------------------------------------------------------------- /annotation-file-utilities/annotation-file-utilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/annotation-file-utilities.html -------------------------------------------------------------------------------- /annotation-file-utilities/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/build.gradle -------------------------------------------------------------------------------- /annotation-file-utilities/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/build.properties -------------------------------------------------------------------------------- /annotation-file-utilities/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/build.xml -------------------------------------------------------------------------------- /annotation-file-utilities/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/changelog.html -------------------------------------------------------------------------------- /annotation-file-utilities/design.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/design.tex -------------------------------------------------------------------------------- /annotation-file-utilities/dev-scripts/test-allTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/dev-scripts/test-allTests.sh -------------------------------------------------------------------------------- /annotation-file-utilities/dev-scripts/test-downstream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/dev-scripts/test-downstream.sh -------------------------------------------------------------------------------- /annotation-file-utilities/dev-scripts/test-misc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/dev-scripts/test-misc.sh -------------------------------------------------------------------------------- /annotation-file-utilities/dev-scripts/test-typecheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/dev-scripts/test-typecheck.sh -------------------------------------------------------------------------------- /annotation-file-utilities/figures/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/figures/Makefile -------------------------------------------------------------------------------- /annotation-file-utilities/figures/corresp.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/figures/corresp.dot -------------------------------------------------------------------------------- /annotation-file-utilities/figures/dataflow.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/figures/dataflow.dot -------------------------------------------------------------------------------- /annotation-file-utilities/figures/nocast.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/figures/nocast.dot -------------------------------------------------------------------------------- /annotation-file-utilities/figures/scene-lib-type-hierarchy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/figures/scene-lib-type-hierarchy.svg -------------------------------------------------------------------------------- /annotation-file-utilities/figures/tool-relations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/figures/tool-relations.svg -------------------------------------------------------------------------------- /annotation-file-utilities/figures/typecast.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/figures/typecast.dot -------------------------------------------------------------------------------- /annotation-file-utilities/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /annotation-file-utilities/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /annotation-file-utilities/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/gradlew -------------------------------------------------------------------------------- /annotation-file-utilities/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/gradlew.bat -------------------------------------------------------------------------------- /annotation-file-utilities/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/lib/README -------------------------------------------------------------------------------- /annotation-file-utilities/lib/javac-9+181-r4173-1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/lib/javac-9+181-r4173-1.jar -------------------------------------------------------------------------------- /annotation-file-utilities/scripts/anncat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/scripts/anncat -------------------------------------------------------------------------------- /annotation-file-utilities/scripts/extract-annotations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/scripts/extract-annotations -------------------------------------------------------------------------------- /annotation-file-utilities/scripts/extract-annotations.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/scripts/extract-annotations.bat -------------------------------------------------------------------------------- /annotation-file-utilities/scripts/insert-annotations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/scripts/insert-annotations -------------------------------------------------------------------------------- /annotation-file-utilities/scripts/insert-annotations-to-source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/scripts/insert-annotations-to-source -------------------------------------------------------------------------------- /annotation-file-utilities/scripts/insert-annotations-to-source.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/scripts/insert-annotations-to-source.bat -------------------------------------------------------------------------------- /annotation-file-utilities/scripts/insert-annotations.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/scripts/insert-annotations.bat -------------------------------------------------------------------------------- /annotation-file-utilities/settings.gradle: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/Main.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/Source.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/Source.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/ASTPathCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/ASTPathCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/AnnotationInsertion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/AnnotationInsertion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/BoundLocationCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/BoundLocationCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/CallCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/CallCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/CaseUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/CaseUtils.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/CastCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/CastCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/CastInsertion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/CastInsertion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/ClassBoundCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/ClassBoundCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/CloseParenthesisInsertion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/CloseParenthesisInsertion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/ConstructorInsertion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/ConstructorInsertion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/Criteria.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/Criteria.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/Criterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/Criterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/EnclosedByCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/EnclosedByCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/ExtImplsLocationCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/ExtImplsLocationCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/FieldCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/FieldCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/GenericArrayLocationCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/GenericArrayLocationCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/InClassCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/InClassCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/InFieldInitCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/InFieldInitCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/InInitBlockCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/InInitBlockCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/InMethodCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/InMethodCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/InPackageCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/InPackageCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/Insertion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/Insertion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/Insertions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/Insertions.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/InstanceOfCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/InstanceOfCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/IntersectionTypeLocationCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/IntersectionTypeLocationCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/IsCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/IsCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/IsSigMethodCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/IsSigMethodCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/LambdaCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/LambdaCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/LocalVariableCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/LocalVariableCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/MemberReferenceCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/MemberReferenceCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/MethodBoundCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/MethodBoundCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/NewCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/NewCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/NewInsertion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/NewInsertion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/NotInMethodCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/NotInMethodCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/PackageCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/PackageCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/ParamCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/ParamCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/ReceiverCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/ReceiverCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/ReceiverInsertion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/ReceiverInsertion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/ReturnTypeCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/ReturnTypeCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/TreeFinder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/TreeFinder.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/TypeArgumentCriterion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/TypeArgumentCriterion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/TypeBoundExtendsInsertion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/TypeBoundExtendsInsertion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/TypedInsertion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/TypedInsertion.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/find/package-info.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/AnonymousClassScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/AnonymousClassScanner.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/CastScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/CastScanner.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/CommonScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/CommonScanner.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/InitBlockScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/InitBlockScanner.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/InstanceOfScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/InstanceOfScanner.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/LambdaScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/LambdaScanner.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/LocalClassScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/LocalClassScanner.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/LocalVariableScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/LocalVariableScanner.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/MemberReferenceScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/MemberReferenceScanner.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/MethodCallScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/MethodCallScanner.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/MethodOffsetClassVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/MethodOffsetClassVisitor.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/NewScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/NewScanner.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/TreePathUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/scanner/TreePathUtil.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/specification/CriterionList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/specification/CriterionList.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/specification/IndexFileSpecification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/annotator/specification/IndexFileSpecification.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/Annotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/Annotation.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/AnnotationBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/AnnotationBuilder.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/AnnotationFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/AnnotationFactory.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/Annotations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/Annotations.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/ArrayBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/ArrayBuilder.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/ABlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/ABlock.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/AClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/AClass.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/ADeclaration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/ADeclaration.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/AElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/AElement.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/AExpression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/AExpression.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/AField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/AField.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/AMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/AMethod.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/AScene.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/AScene.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/ATypeElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/ATypeElement.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/ATypeElementWithType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/ATypeElementWithType.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/AnnotationDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/AnnotationDef.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/BoundLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/BoundLocation.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/DefCollector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/DefCollector.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/DefException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/DefException.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/ElementVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/ElementVisitor.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/LocalLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/LocalLocation.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/RelativeLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/RelativeLocation.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/TypeASTMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/TypeASTMapper.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/TypeIndexLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/TypeIndexLocation.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/TypePathEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/TypePathEntry.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/el/package-info.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/field/AFTVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/field/AFTVisitor.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/field/AnnotationAFT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/field/AnnotationAFT.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/field/AnnotationFieldType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/field/AnnotationFieldType.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/field/ArrayAFT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/field/ArrayAFT.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/field/BasicAFT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/field/BasicAFT.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/field/ClassTokenAFT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/field/ClassTokenAFT.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/field/EnumAFT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/field/EnumAFT.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/field/ScalarAFT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/field/ScalarAFT.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/field/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/field/package-info.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/ASTIndex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/ASTIndex.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/ASTPath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/ASTPath.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/ASTRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/ASTRecord.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/DebugWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/DebugWriter.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/IOUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/IOUtils.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/IndexFileParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/IndexFileParser.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/IndexFileWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/IndexFileWriter.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/JavapParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/JavapParser.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/ParseException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/ParseException.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/classfile/ClassAnnotationSceneReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/classfile/ClassAnnotationSceneReader.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/classfile/ClassAnnotationSceneWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/classfile/ClassAnnotationSceneWriter.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/classfile/ClassFileReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/classfile/ClassFileReader.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/classfile/ClassFileWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/classfile/ClassFileWriter.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/classfile/CodeOffsetAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/classfile/CodeOffsetAdapter.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/classfile/MethodCodeOffsetAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/classfile/MethodCodeOffsetAdapter.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/classfile/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/classfile/package-info.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/io/package-info.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/package-info.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/tools/Anncat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/tools/Anncat.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/tools/IndexFileMerger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/tools/IndexFileMerger.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/toys/BalanceEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/toys/BalanceEnum.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/toys/ClassTokenAnnotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/toys/ClassTokenAnnotation.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/toys/FancierAnnotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/toys/FancierAnnotation.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/toys/FancyAnnotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/toys/FancyAnnotation.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/toys/SimplerAnnotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/toys/SimplerAnnotation.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/toys/SimplerInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/toys/SimplerInterface.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/toys/SubAnnotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/toys/SubAnnotation.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/toys/ValuesAnnotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/toys/ValuesAnnotation.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/toys/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/toys/package-info.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/type/ArrayType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/type/ArrayType.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/type/BoundedType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/type/BoundedType.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/type/DeclaredType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/type/DeclaredType.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/type/Type.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/type/Type.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/CommandLineUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/CommandLineUtils.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/EqualByStringRepresentation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/EqualByStringRepresentation.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/JVMNames.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/JVMNames.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/MethodRecorder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/MethodRecorder.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/SceneOps.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/SceneOps.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/Strings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/Strings.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/coll/KeyedSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/coll/KeyedSet.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/coll/Keyer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/coll/Keyer.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/coll/LinkedHashKeyedSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/coll/LinkedHashKeyedSet.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/coll/VivifyingMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/coll/VivifyingMap.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/coll/WrapperMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/main/java/org/checkerframework/afu/scenelib/util/coll/WrapperMap.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/java/annotations/tests/classfile/foo/A.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/java/annotations/tests/classfile/foo/A.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/java/annotations/tests/classfile/foo/B.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/java/annotations/tests/classfile/foo/B.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/java/annotations/tests/classfile/foo/C.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/java/annotations/tests/classfile/foo/C.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/java/annotations/tests/classfile/foo/D.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/java/annotations/tests/classfile/foo/D.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/java/annotations/tests/classfile/foo/E.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/java/annotations/tests/classfile/foo/E.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/java/annotations/tests/classfile/foo/F.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/java/annotations/tests/classfile/foo/F.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/java/annotations/tests/classfile/foo/G.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/java/annotations/tests/classfile/foo/G.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/java/annotations/tests/classfile/foo/OnPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/java/annotations/tests/classfile/foo/OnPackage.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/java/annotations/tests/classfile/foo/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/java/annotations/tests/classfile/foo/package-info.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/java/org/checkerframework/afu/scenelib/test/classfile/AnnotationVerifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/java/org/checkerframework/afu/scenelib/test/classfile/AnnotationVerifier.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/java/org/checkerframework/afu/scenelib/test/classfile/AnnotationsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/java/org/checkerframework/afu/scenelib/test/classfile/AnnotationsTest.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/java/org/checkerframework/afu/scenelib/test/classfile/TestSceneLib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/java/org/checkerframework/afu/scenelib/test/classfile/TestSceneLib.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/java/org/checkerframework/afu/scenelib/test/classfile/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/java/org/checkerframework/afu/scenelib/test/classfile/package-info.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/java/org/checkerframework/afu/scenelib/test/executable/Example.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/java/org/checkerframework/afu/scenelib/test/executable/Example.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/java/org/checkerframework/afu/scenelib/test/executable/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/java/org/checkerframework/afu/scenelib/test/executable/package-info.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/Makefile -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/README.md -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestClassEmpty.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestClassEmpty.class -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestClassEmpty_Expected.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestClassEmpty_Expected.class -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestClassNonEmpty.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestClassNonEmpty.class -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestFieldGeneric.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestFieldGeneric.class -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestFieldGenericSmall.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestFieldGenericSmall.class -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestFieldSimple.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestFieldSimple.class -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestFieldSimple_Expected.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestFieldSimple_Expected.class -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestLocalVariable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestLocalVariable.class -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestLocalVariableA.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestLocalVariableA.class -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestMethodReceiver.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestMethodReceiver.class -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestObjectCreation.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestObjectCreation.class -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestTypeTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestTypeTest.class -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestTypeTest_Expected.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestTypeTest_Expected.class -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestTypecast.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestTypecast.class -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestTypecastGenericArray.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestTypecastGenericArray.class -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestTypecast_Expected.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/TestTypecast_Expected.class -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/package-info.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/package-info.class -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/package-info_Expected.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations-expected/tests/classfile/cases/package-info_Expected.class -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/README.md -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/all-annotations.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/all-annotations.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestClassEmpty.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestClassEmpty.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestClassEmpty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestClassEmpty.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestClassNonEmpty.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestClassNonEmpty.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestClassNonEmpty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestClassNonEmpty.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestFieldGeneric.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestFieldGeneric.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestFieldGeneric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestFieldGeneric.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestFieldGenericSmall.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestFieldGenericSmall.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestFieldGenericSmall.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestFieldGenericSmall.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestFieldSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestFieldSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestFieldSimple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestFieldSimple.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestLocalVariable.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestLocalVariable.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestLocalVariable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestLocalVariable.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestLocalVariableA.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestLocalVariableA.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestLocalVariableA.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestLocalVariableA.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestLocalVariableGenericArray.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestLocalVariableGenericArray.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestLocalVariableGenericArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestLocalVariableGenericArray.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestMethodReceiver.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestMethodReceiver.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestMethodReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestMethodReceiver.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestMethodReturnTypeGenericArray.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestMethodReturnTypeGenericArray.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestMethodReturnTypeGenericArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestMethodReturnTypeGenericArray.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestObjectCreation.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestObjectCreation.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestObjectCreation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestObjectCreation.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestObjectCreationGenericArray.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestObjectCreationGenericArray.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestObjectCreationGenericArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestObjectCreationGenericArray.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestTypeTest.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestTypeTest.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestTypeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestTypeTest.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestTypecast.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestTypecast.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestTypecast.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestTypecast.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestTypecastGenericArray.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestTypecastGenericArray.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestTypecastGenericArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/TestTypecastGenericArray.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/package-info.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/package-info.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/classfile/cases/package-info.java -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/executable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/executable/README.md -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/executable/example-input.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/executable/example-input.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/executable/example-output.jaif.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/executable/example-output.jaif.goal -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/annotations/tests/executable/example-stdout.jaif.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/annotations/tests/executable/example-stdout.jaif.goal -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/org/checkerframework/afu/scenelib/test/classfile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/org/checkerframework/afu/scenelib/test/classfile/README.md -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/org/checkerframework/afu/scenelib/test/classfile/test1.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/org/checkerframework/afu/scenelib/test/classfile/test1.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/src/test/resources/org/checkerframework/afu/scenelib/test/classfile/test2.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/src/test/resources/org/checkerframework/afu/scenelib/test/classfile/test2.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/-SEE-THE-MAKEFILE-: -------------------------------------------------------------------------------- 1 | See the Makefile. 2 | -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ASTInsert.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ASTInsert.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ASTInsert.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ASTInsert.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ASTInsert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ASTInsert.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Abbreviation.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Abbreviation.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Abbreviation.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Abbreviation.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Abbreviation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Abbreviation.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/AnnotationEnumFieldInsertion.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/AnnotationEnumFieldInsertion.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/AnnotationEnumFieldInsertion.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/AnnotationEnumFieldInsertion.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/AnnotationEnumFieldInsertion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/AnnotationEnumFieldInsertion.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/AnonInner.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/AnonInner.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/AnonInner.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/AnonInner.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/AnonInner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/AnonInner.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ArrayLiteral.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ArrayLiteral.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ArrayLiteral.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ArrayLiteral.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ArrayLiteral.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ArrayLiteral.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ArrayMultiDim.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ArrayMultiDim.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ArrayMultiDim.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ArrayMultiDim.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ArrayMultiDim.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ArrayMultiDim.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ArrayParamSimple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ArrayParamSimple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ArrayParamSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ArrayParamSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ArrayParamSimple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ArrayParamSimple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ArrayReturnTypeSimple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ArrayReturnTypeSimple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ArrayReturnTypeSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ArrayReturnTypeSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ArrayReturnTypeSimple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ArrayReturnTypeSimple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/BoundClassMultiple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/BoundClassMultiple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/BoundClassMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/BoundClassMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/BoundClassMultiple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/BoundClassMultiple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/BoundClassSimple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/BoundClassSimple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/BoundClassSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/BoundClassSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/BoundClassSimple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/BoundClassSimple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/BoundMethodMultiple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/BoundMethodMultiple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/BoundMethodMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/BoundMethodMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/BoundMethodMultiple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/BoundMethodMultiple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/BoundMethodSimple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/BoundMethodSimple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/BoundMethodSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/BoundMethodSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/BoundMethodSimple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/BoundMethodSimple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/BoundZero.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/BoundZero.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/BoundZero.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/BoundZero.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/BoundZero.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/BoundZero.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/CastInsert.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/CastInsert.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/CastInsert.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/CastInsert.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/CastInsert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/CastInsert.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ClassAnnotationParameter.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ClassAnnotationParameter.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ClassAnnotationParameter.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ClassAnnotationParameter.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ClassAnnotationParameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ClassAnnotationParameter.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ClassListAnnotationParameter.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ClassListAnnotationParameter.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ClassListAnnotationParameter.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ClassListAnnotationParameter.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ClassListAnnotationParameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ClassListAnnotationParameter.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ClassSimple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ClassSimple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ClassSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ClassSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ClassSimple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ClassSimple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ComplexLocationOne.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ComplexLocationOne.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ComplexLocationOne.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ComplexLocationOne.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ComplexLocationOne.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ComplexLocationOne.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ComplexLocationTwo.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ComplexLocationTwo.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ComplexLocationTwo.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ComplexLocationTwo.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ComplexLocationTwo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ComplexLocationTwo.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ConstructorParam.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ConstructorParam.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ConstructorParam.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ConstructorParam.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ConstructorParam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ConstructorParam.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ConstructorParamMultiple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ConstructorParamMultiple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ConstructorParamMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ConstructorParamMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ConstructorParamMultiple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ConstructorParamMultiple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ConstructorReceivers.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ConstructorReceivers.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ConstructorReceivers.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ConstructorReceivers.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ConstructorReceivers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ConstructorReceivers.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ConstructorReturn.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ConstructorReturn.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ConstructorReturn.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ConstructorReturn.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ConstructorReturn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ConstructorReturn.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Date.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Date.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Date.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Date.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Date.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Date.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/DeclarationAnnotation.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/DeclarationAnnotation.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/DeclarationAnnotation.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/DeclarationAnnotation.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/DeclarationAnnotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/DeclarationAnnotation.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/DuplicateAnnotation.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/DuplicateAnnotation.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/DuplicateAnnotation.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/DuplicateAnnotation.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/DuplicateAnnotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/DuplicateAnnotation.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/DuplicateAnnotationNewArray.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/DuplicateAnnotationNewArray.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/DuplicateAnnotationNewArray.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/DuplicateAnnotationNewArray.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/DuplicateAnnotationNewArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/DuplicateAnnotationNewArray.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/EnumAnnotationParameter.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/EnumAnnotationParameter.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/EnumAnnotationParameter.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/EnumAnnotationParameter.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/EnumAnnotationParameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/EnumAnnotationParameter.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/EnumListAnnotationParameter.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/EnumListAnnotationParameter.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/EnumListAnnotationParameter.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/EnumListAnnotationParameter.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/EnumListAnnotationParameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/EnumListAnnotationParameter.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ExtImpl.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ExtImpl.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ExtImpl.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ExtImpl.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ExtImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ExtImpl.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/FieldGenericArray.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/FieldGenericArray.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/FieldGenericArray.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/FieldGenericArray.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/FieldGenericArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/FieldGenericArray.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/FieldMultiple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/FieldMultiple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/FieldMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/FieldMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/FieldMultiple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/FieldMultiple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/FieldSimple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/FieldSimple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/FieldSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/FieldSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/FieldSimple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/FieldSimple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/FieldSimpleArray.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/FieldSimpleArray.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/FieldSimpleArray.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/FieldSimpleArray.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/FieldSimpleArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/FieldSimpleArray.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/FieldSimpleGeneric.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/FieldSimpleGeneric.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/FieldSimpleGeneric.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/FieldSimpleGeneric.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/FieldSimpleGeneric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/FieldSimpleGeneric.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/GenericAnnoBound.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/GenericAnnoBound.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/GenericAnnoBound.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/GenericAnnoBound.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/GenericAnnoBound.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/GenericAnnoBound.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/GenericArg.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/GenericArg.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/GenericArg.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/GenericArg.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/GenericArg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/GenericArg.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/GenericCell.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/GenericCell.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/GenericCell.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/GenericCell.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/GenericCell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/GenericCell.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/GenericCellDoubled.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/GenericCellDoubled.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/GenericCellDoubled.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/GenericCellDoubled.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/GenericCellDoubled.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/GenericCellDoubled.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/GenericMultiLevel.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/GenericMultiLevel.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/GenericMultiLevel.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/GenericMultiLevel.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/GenericMultiLevel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/GenericMultiLevel.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ImplicitUpper.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ImplicitUpper.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ImplicitUpper.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ImplicitUpper.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ImplicitUpper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ImplicitUpper.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Initializers.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Initializers.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Initializers.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Initializers.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Initializers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Initializers.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InnerClass.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InnerClass.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InnerClass.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InnerClass.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InnerClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InnerClass.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InnerClassAnonymous.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InnerClassAnonymous.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InnerClassAnonymous.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InnerClassAnonymous.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InnerClassAnonymous.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InnerClassAnonymous.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InnerClassSimple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InnerClassSimple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InnerClassSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InnerClassSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InnerClassSimple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InnerClassSimple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InnerReceivers.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InnerReceivers.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InnerReceivers.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InnerReceivers.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InnerReceivers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InnerReceivers.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InnerTypeResolution.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InnerTypeResolution.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InnerTypeResolution.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InnerTypeResolution.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InnerTypeResolution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InnerTypeResolution.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InstanceOfMultiple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InstanceOfMultiple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InstanceOfMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InstanceOfMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InstanceOfMultiple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InstanceOfMultiple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InstanceOfSimple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InstanceOfSimple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InstanceOfSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InstanceOfSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/InstanceOfSimple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/InstanceOfSimple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/IntCell.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/IntCell.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/IntCell.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/IntCell.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/IntCell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/IntCell.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Issue156.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Issue156.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Issue156.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Issue156.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Issue156.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Issue156.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Issue216.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Issue216.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Issue216.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Issue216.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Issue216.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Issue216.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LambdaExpression.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LambdaExpression.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LambdaExpression.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LambdaExpression.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LambdaExpression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LambdaExpression.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalArray.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalArray.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalArray.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalArray.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalArray.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalClass.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalClass.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalClass.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalClass.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalClass.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalGeneric.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalGeneric.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalGeneric.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalGeneric.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalGeneric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalGeneric.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalGenericShadow.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalGenericShadow.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalGenericShadow.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalGenericShadow.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalGenericShadow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalGenericShadow.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalMultiple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalMultiple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalMultiple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalMultiple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalMultipleManyMethods.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalMultipleManyMethods.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalMultipleManyMethods.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalMultipleManyMethods.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalMultipleManyMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalMultipleManyMethods.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalMultipleManyMethodsShifted.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalMultipleManyMethodsShifted.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalMultipleManyMethodsShifted.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalMultipleManyMethodsShifted.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalMultipleManyMethodsShifted.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalMultipleManyMethodsShifted.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalSimple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalSimple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalSimple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalSimple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalSimpleMultiple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalSimpleMultiple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalSimpleMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalSimpleMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LocalSimpleMultiple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LocalSimpleMultiple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LongInAnnotationArgumentArray.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LongInAnnotationArgumentArray.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LongInAnnotationArgumentArray.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/LongInAnnotationArgumentArray.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/LongInAnnotationArgumentArray.java: -------------------------------------------------------------------------------- 1 | class LongInAnnotationArgumentArray { 2 | long s0 = 2147483648L; 3 | } 4 | -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Makefile -------------------------------------------------------------------------------- /annotation-file-utilities/tests/MatchReturnValue.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/MatchReturnValue.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/MatchReturnValue.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/MatchReturnValue.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/MatchReturnValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/MatchReturnValue.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/MemberReference.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/MemberReference.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/MemberReference.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/MemberReference.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/MemberReference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/MemberReference.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/MemberSelectTypes.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/MemberSelectTypes.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/MemberSelectTypes.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/MemberSelectTypes.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/MemberSelectTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/MemberSelectTypes.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/MethodCompoundType.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/MethodCompoundType.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/MethodCompoundType.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/MethodCompoundType.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/MethodCompoundType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/MethodCompoundType.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/MethodLocalClass.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/MethodLocalClass.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/MethodLocalClass.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/MethodLocalClass.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/MethodLocalClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/MethodLocalClass.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/MethodMultiple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/MethodMultiple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/MethodMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/MethodMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/MethodMultiple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/MethodMultiple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NestedConstructorResultAnno.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NestedConstructorResultAnno.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NestedConstructorResultAnno.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NestedConstructorResultAnno.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NestedConstructorResultAnno.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NestedConstructorResultAnno.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NewArray.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NewArray.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NewArray.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NewArray.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NewArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NewArray.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NewGeneric.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NewGeneric.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NewGeneric.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NewGeneric.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NewGeneric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NewGeneric.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NewInAnnotatedVariable.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NewInAnnotatedVariable.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NewInAnnotatedVariable.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NewInAnnotatedVariable.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NewInAnnotatedVariable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NewInAnnotatedVariable.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NewMultiple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NewMultiple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NewMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NewMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NewMultiple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NewMultiple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NewPackage.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NewPackage.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NewPackage.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NewPackage.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NewPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NewPackage.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NewSimple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NewSimple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NewSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NewSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NewSimple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NewSimple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NonClass.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NonClass.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NonClass.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NonClass.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NonClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NonClass.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NonStandardSpacing.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NonStandardSpacing.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NonStandardSpacing.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NonStandardSpacing.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/NonStandardSpacing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/NonStandardSpacing.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Package.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Package.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Package.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Package.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Package.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Package.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ParseType.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ParseType.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ParseType.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ParseType.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ParseType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ParseType.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ReceiverWithThrows.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ReceiverWithThrows.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ReceiverWithThrows.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ReceiverWithThrows.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ReceiverWithThrows.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ReceiverWithThrows.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Receivers.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Receivers.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Receivers.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Receivers.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Receivers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Receivers.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/StringEscape.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/StringEscape.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/StringEscape.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/StringEscape.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/StringEscape.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/StringEscape.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/TypeCastGeneric.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/TypeCastGeneric.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/TypeCastGeneric.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/TypeCastGeneric.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/TypeCastGeneric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/TypeCastGeneric.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/TypeCastMultiple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/TypeCastMultiple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/TypeCastMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/TypeCastMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/TypeCastMultiple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/TypeCastMultiple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/TypeCastSimple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/TypeCastSimple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/TypeCastSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/TypeCastSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/TypeCastSimple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/TypeCastSimple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/TypeParamMethod.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/TypeParamMethod.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/TypeParamMethod.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/TypeParamMethod.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/TypeParamMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/TypeParamMethod.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Varargs.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Varargs.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Varargs.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Varargs.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/Varargs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/Varargs.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/VerifyDiffs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/VerifyDiffs.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/WildcardAnnoBound.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/WildcardAnnoBound.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/WildcardAnnoBound.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/WildcardAnnoBound.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/WildcardAnnoBound.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/WildcardAnnoBound.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/abbreviated/C.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/abbreviated/C.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/abbreviated/C0.goal: -------------------------------------------------------------------------------- 1 | public class C0 {} 2 | -------------------------------------------------------------------------------- /annotation-file-utilities/tests/abbreviated/C0.java: -------------------------------------------------------------------------------- 1 | public class C0 {} 2 | -------------------------------------------------------------------------------- /annotation-file-utilities/tests/abbreviated/C1.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/abbreviated/C1.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/abbreviated/C1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/abbreviated/C1.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/abbreviated/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/abbreviated/Makefile -------------------------------------------------------------------------------- /annotation-file-utilities/tests/abbreviated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/abbreviated/README.md -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ad-hoc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ad-hoc/Makefile -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ad-hoc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ad-hoc/README -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ad-hoc/bridge/C.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ad-hoc/bridge/C.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ad-hoc/bridge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ad-hoc/bridge/Makefile -------------------------------------------------------------------------------- /annotation-file-utilities/tests/ad-hoc/bridge/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/ad-hoc/bridge/README -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/ASTInsert.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/ASTInsert.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/AnonInner.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/AnonInner.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/ArrayMultiDim.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/ArrayMultiDim.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/ArrayParamSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/ArrayParamSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/ArrayReturnTypeSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/ArrayReturnTypeSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/BoundClassMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/BoundClassMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/BoundClassSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/BoundClassSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/BoundMethodMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/BoundMethodMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/BoundMethodSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/BoundMethodSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/CastInsert.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/CastInsert.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/ClassAnnotationParameter.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/ClassAnnotationParameter.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/ClassListAnnotationParameter.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/ClassListAnnotationParameter.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/ClassSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/ClassSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/ComplexLocationOne.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/ComplexLocationOne.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/ComplexLocationTwo.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/ComplexLocationTwo.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/ConstructorParam.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/ConstructorParam.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/ConstructorParamMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/ConstructorParamMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/ConstructorReceivers.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/ConstructorReceivers.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/ConstructorReturn.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/ConstructorReturn.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/Date.jaif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/DeclarationAnnotation.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/DeclarationAnnotation.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/DuplicateAnnotation.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/DuplicateAnnotation.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/EnumAnnotationParameter.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/EnumAnnotationParameter.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/EnumListAnnotationParameter.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/EnumListAnnotationParameter.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/ExtImpl.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/ExtImpl.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/FieldGenericArray.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/FieldGenericArray.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/FieldMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/FieldMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/FieldSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/FieldSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/FieldSimpleArray.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/FieldSimpleArray.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/FieldSimpleGeneric.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/FieldSimpleGeneric.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/GenericAnnoBound.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/GenericAnnoBound.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/GenericArg.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/GenericArg.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/GenericCell.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/GenericCell.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/GenericCellDoubled.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/GenericCellDoubled.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/GenericMultiLevel.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/GenericMultiLevel.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/ImplicitUpper.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/ImplicitUpper.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/Initializers.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/Initializers.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/InnerClass.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/InnerClass.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/InnerClassAnonymous.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/InnerClassAnonymous.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/InnerClassSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/InnerClassSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/InnerReceivers.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/InnerReceivers.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/InnerTypeResolution.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/InnerTypeResolution.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/InstanceOfMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/InstanceOfMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/InstanceOfSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/InstanceOfSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/IntCell.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/IntCell.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/LocalArray.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/LocalArray.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/LocalClass.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/LocalClass.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/LocalGeneric.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/LocalGeneric.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/LocalGenericShadow.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/LocalGenericShadow.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/LocalMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/LocalMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/LocalMultipleManyMethods.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/LocalMultipleManyMethods.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/LocalMultipleManyMethodsShifted.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/LocalMultipleManyMethodsShifted.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/LocalSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/LocalSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/LocalSimpleMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/LocalSimpleMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/Makefile -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/MatchReturnValue.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/MatchReturnValue.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/MemberSelectTypes.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/MemberSelectTypes.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/MethodCompoundType.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/MethodCompoundType.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/MethodMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/MethodMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/NewArray.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/NewArray.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/NewGeneric.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/NewGeneric.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/NewInAnnotatedVariable.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/NewInAnnotatedVariable.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/NewMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/NewMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/NewPackage.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/NewPackage.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/NewSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/NewSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/NonClass.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/NonClass.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/NonStandardSpacing.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/NonStandardSpacing.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/Package.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/Package.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/ParseType.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/ParseType.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/ReceiverWithThrows.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/ReceiverWithThrows.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/Receivers.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/Receivers.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/TypeCastGeneric.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/TypeCastGeneric.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/TypeCastMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/TypeCastMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/TypeCastSimple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/TypeCastSimple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/TypeParamMethod.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/TypeParamMethod.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/Varargs.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/Varargs.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/WildcardAnnoBound.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/WildcardAnnoBound.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/converted/package-info.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/converted/package-info.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/enum-imports/C.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/enum-imports/C.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/enum-imports/C.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/enum-imports/C.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/enum-imports/C.java: -------------------------------------------------------------------------------- 1 | public class C { 2 | Object f; 3 | } 4 | -------------------------------------------------------------------------------- /annotation-file-utilities/tests/enum-imports/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/enum-imports/Makefile -------------------------------------------------------------------------------- /annotation-file-utilities/tests/enum-imports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/enum-imports/README.md -------------------------------------------------------------------------------- /annotation-file-utilities/tests/issue155/Issue155.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/issue155/Issue155.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/issue155/Issue155.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/issue155/Issue155.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/issue155/Issue155.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/issue155/Issue155.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/issue155/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/issue155/Makefile -------------------------------------------------------------------------------- /annotation-file-utilities/tests/package-info.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/package-info.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/package-info.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/package-info.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/package-info.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/ClassTV3.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/ClassTV3.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/ClassTV3.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/ClassTV3.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/ClassTV3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/ClassTV3.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/FieldNew.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/FieldNew.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/FieldNew.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/FieldNew.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/FieldNew.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/FieldNew.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/FieldNewComplex.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/FieldNewComplex.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/FieldNewComplex.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/FieldNewComplex.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/FieldNewComplex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/FieldNewComplex.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/LocalVariables.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/LocalVariables.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/LocalVariables.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/LocalVariables.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/LocalVariables.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/LocalVariables.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/Makefile -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/MethodNew.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/MethodNew.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/MethodNew.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/MethodNew.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/MethodNew.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/MethodNew.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/SameName.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/SameName.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/SameName.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/SameName.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/SameName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/SameName.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/StaticInit.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/StaticInit.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/StaticInit.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/StaticInit.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/StaticInit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/StaticInit.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/TypeCastMultiple.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/TypeCastMultiple.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/TypeCastMultiple.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/TypeCastMultiple.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/TypeCastMultiple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/TypeCastMultiple.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/Wildcards.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/Wildcards.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/Wildcards.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/Wildcards.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/Wildcards.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/Wildcards.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/WildcardsSuper.goal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/WildcardsSuper.goal -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/WildcardsSuper.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/WildcardsSuper.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/source-extension/WildcardsSuper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/source-extension/WildcardsSuper.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/system-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/system-test/Makefile -------------------------------------------------------------------------------- /annotation-file-utilities/tests/system-test/expected-annos-better-UNUSED.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/system-test/expected-annos-better-UNUSED.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/system-test/expected-annos.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/system-test/expected-annos.jaif -------------------------------------------------------------------------------- /annotation-file-utilities/tests/system-test/source-ann/AnnotationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/system-test/source-ann/AnnotationTest.java -------------------------------------------------------------------------------- /annotation-file-utilities/tests/system-test/source-plain/AnnotationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/annotation-file-utilities/tests/system-test/source-plain/AnnotationTest.java -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typetools/annotation-tools/HEAD/azure-pipelines.yml --------------------------------------------------------------------------------