├── .gitignore ├── .idea ├── .name ├── ant.xml ├── artifacts │ ├── KAnnotatorCli.xml │ ├── KAnnotatorPlugin.xml │ └── integration_tests.xml ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── kannotator.xml ├── libraries │ ├── KotlinJavaRuntime.xml │ ├── asm_debug_all_4_0.xml │ ├── gs_collections_2_0.xml │ ├── guava_13_0_1.xml │ ├── idea_bootstrap.xml │ ├── idea_for_plugin.xml │ ├── idea_full.xml │ ├── jetbrains_annotations.xml │ ├── jung_2_0_1.xml │ ├── junit_4_10.xml │ └── plume.xml ├── misc.xml ├── modules.xml ├── runConfigurations │ ├── FunctionalTests.xml │ ├── IntegrationTests.xml │ └── KAnnotatorPlugin.xml ├── scopes │ └── scope_settings.xml ├── uiDesigner.xml └── vcs.xml ├── README.md ├── TeamCityBuild.xml ├── VerifyAndPublish.xml ├── android-custom ├── README.md ├── android-19-api.jar ├── android-sdk_4.4.2.jar ├── exceptions.txt ├── exclude.xml ├── includedClassNames.txt ├── interestingPackages.txt ├── postprocess │ └── android │ │ └── view │ │ └── annotations.xml └── propagationOverrides.txt ├── android-sdk-annotations-kotlin-plugin ├── android │ ├── accessibilityservice │ │ └── annotations.xml │ ├── accounts │ │ └── annotations.xml │ ├── animation │ │ └── annotations.xml │ ├── annotation │ │ └── annotations.xml │ ├── annotations.xml │ ├── app │ │ ├── admin │ │ │ └── annotations.xml │ │ ├── annotations.xml │ │ └── backup │ │ │ └── annotations.xml │ ├── appwidget │ │ └── annotations.xml │ ├── bluetooth │ │ └── annotations.xml │ ├── content │ │ ├── annotations.xml │ │ ├── pm │ │ │ └── annotations.xml │ │ └── res │ │ │ └── annotations.xml │ ├── database │ │ ├── annotations.xml │ │ └── sqlite │ │ │ └── annotations.xml │ ├── ddm │ │ └── annotations.xml │ ├── drm │ │ ├── annotations.xml │ │ └── mobile1 │ │ │ └── annotations.xml │ ├── filterfw │ │ ├── annotations.xml │ │ ├── core │ │ │ └── annotations.xml │ │ ├── format │ │ │ └── annotations.xml │ │ ├── geometry │ │ │ └── annotations.xml │ │ └── io │ │ │ └── annotations.xml │ ├── filterpacks │ │ ├── base │ │ │ └── annotations.xml │ │ ├── imageproc │ │ │ └── annotations.xml │ │ ├── numeric │ │ │ └── annotations.xml │ │ ├── performance │ │ │ └── annotations.xml │ │ ├── text │ │ │ └── annotations.xml │ │ ├── ui │ │ │ └── annotations.xml │ │ ├── videoproc │ │ │ └── annotations.xml │ │ ├── videosink │ │ │ └── annotations.xml │ │ └── videosrc │ │ │ └── annotations.xml │ ├── gesture │ │ └── annotations.xml │ ├── graphics │ │ ├── annotations.xml │ │ └── drawable │ │ │ ├── annotations.xml │ │ │ └── shapes │ │ │ └── annotations.xml │ ├── hardware │ │ ├── annotations.xml │ │ ├── display │ │ │ └── annotations.xml │ │ ├── input │ │ │ └── annotations.xml │ │ ├── location │ │ │ └── annotations.xml │ │ └── usb │ │ │ └── annotations.xml │ ├── inputmethodservice │ │ └── annotations.xml │ ├── location │ │ └── annotations.xml │ ├── media │ │ ├── annotations.xml │ │ ├── audiofx │ │ │ └── annotations.xml │ │ ├── effect │ │ │ ├── annotations.xml │ │ │ └── effects │ │ │ │ └── annotations.xml │ │ └── videoeditor │ │ │ └── annotations.xml │ ├── mtp │ │ └── annotations.xml │ ├── net │ │ ├── annotations.xml │ │ ├── http │ │ │ └── annotations.xml │ │ ├── nsd │ │ │ └── annotations.xml │ │ ├── rtp │ │ │ └── annotations.xml │ │ ├── sip │ │ │ └── annotations.xml │ │ ├── wifi │ │ │ ├── annotations.xml │ │ │ └── p2p │ │ │ │ ├── annotations.xml │ │ │ │ └── nsd │ │ │ │ └── annotations.xml │ │ └── wimax │ │ │ └── annotations.xml │ ├── nfc │ │ ├── annotations.xml │ │ └── tech │ │ │ └── annotations.xml │ ├── opengl │ │ └── annotations.xml │ ├── os │ │ ├── annotations.xml │ │ └── storage │ │ │ └── annotations.xml │ ├── preference │ │ └── annotations.xml │ ├── provider │ │ └── annotations.xml │ ├── renderscript │ │ └── annotations.xml │ ├── sax │ │ └── annotations.xml │ ├── security │ │ └── annotations.xml │ ├── service │ │ ├── dreams │ │ │ └── annotations.xml │ │ ├── notification │ │ │ └── annotations.xml │ │ ├── textservice │ │ │ └── annotations.xml │ │ └── wallpaper │ │ │ └── annotations.xml │ ├── speech │ │ ├── annotations.xml │ │ ├── srec │ │ │ └── annotations.xml │ │ └── tts │ │ │ └── annotations.xml │ ├── support │ │ ├── v13 │ │ │ └── app │ │ │ │ └── annotations.xml │ │ ├── v4 │ │ │ ├── accessibilityservice │ │ │ │ └── annotations.xml │ │ │ ├── app │ │ │ │ └── annotations.xml │ │ │ ├── content │ │ │ │ └── annotations.xml │ │ │ ├── hardware │ │ │ │ └── display │ │ │ │ │ └── annotations.xml │ │ │ ├── net │ │ │ │ └── annotations.xml │ │ │ ├── os │ │ │ │ └── annotations.xml │ │ │ ├── text │ │ │ │ └── annotations.xml │ │ │ ├── util │ │ │ │ └── annotations.xml │ │ │ ├── view │ │ │ │ ├── accessibility │ │ │ │ │ └── annotations.xml │ │ │ │ └── annotations.xml │ │ │ └── widget │ │ │ │ └── annotations.xml │ │ └── v8 │ │ │ └── renderscript │ │ │ └── annotations.xml │ ├── telephony │ │ ├── annotations.xml │ │ ├── cdma │ │ │ └── annotations.xml │ │ └── gsm │ │ │ └── annotations.xml │ ├── test │ │ ├── annotations.xml │ │ ├── mock │ │ │ └── annotations.xml │ │ └── suitebuilder │ │ │ └── annotations.xml │ ├── text │ │ ├── annotations.xml │ │ ├── format │ │ │ └── annotations.xml │ │ ├── method │ │ │ └── annotations.xml │ │ ├── style │ │ │ └── annotations.xml │ │ └── util │ │ │ └── annotations.xml │ ├── util │ │ └── annotations.xml │ ├── view │ │ ├── accessibility │ │ │ └── annotations.xml │ │ ├── animation │ │ │ └── annotations.xml │ │ ├── annotations.xml │ │ ├── inputmethod │ │ │ └── annotations.xml │ │ └── textservice │ │ │ └── annotations.xml │ ├── webkit │ │ └── annotations.xml │ └── widget │ │ └── annotations.xml ├── dalvik │ ├── annotation │ │ └── annotations.xml │ └── system │ │ ├── annotations.xml │ │ └── profiler │ │ └── annotations.xml ├── java │ ├── awt │ │ └── font │ │ │ └── annotations.xml │ ├── beans │ │ └── annotations.xml │ ├── io │ │ └── annotations.xml │ ├── lang │ │ ├── annotation │ │ │ └── annotations.xml │ │ ├── annotations.xml │ │ ├── ref │ │ │ └── annotations.xml │ │ └── reflect │ │ │ └── annotations.xml │ ├── math │ │ └── annotations.xml │ ├── net │ │ └── annotations.xml │ ├── nio │ │ ├── annotations.xml │ │ ├── channels │ │ │ ├── annotations.xml │ │ │ └── spi │ │ │ │ └── annotations.xml │ │ └── charset │ │ │ └── annotations.xml │ ├── security │ │ ├── annotations.xml │ │ ├── cert │ │ │ └── annotations.xml │ │ ├── interfaces │ │ │ └── annotations.xml │ │ └── spec │ │ │ └── annotations.xml │ ├── sql │ │ └── annotations.xml │ ├── text │ │ └── annotations.xml │ └── util │ │ ├── annotations.xml │ │ ├── concurrent │ │ ├── annotations.xml │ │ ├── atomic │ │ │ └── annotations.xml │ │ └── locks │ │ │ └── annotations.xml │ │ ├── jar │ │ └── annotations.xml │ │ ├── logging │ │ └── annotations.xml │ │ ├── prefs │ │ └── annotations.xml │ │ ├── regex │ │ └── annotations.xml │ │ └── zip │ │ └── annotations.xml ├── javax │ ├── annotation │ │ ├── annotations.xml │ │ └── meta │ │ │ └── annotations.xml │ ├── crypto │ │ ├── annotations.xml │ │ ├── interfaces │ │ │ └── annotations.xml │ │ └── spec │ │ │ └── annotations.xml │ ├── microedition │ │ └── khronos │ │ │ ├── egl │ │ │ └── annotations.xml │ │ │ └── opengles │ │ │ └── annotations.xml │ ├── net │ │ ├── annotations.xml │ │ └── ssl │ │ │ └── annotations.xml │ ├── obex │ │ └── annotations.xml │ ├── security │ │ ├── auth │ │ │ ├── annotations.xml │ │ │ ├── callback │ │ │ │ └── annotations.xml │ │ │ └── x500 │ │ │ │ └── annotations.xml │ │ └── cert │ │ │ └── annotations.xml │ ├── sip │ │ ├── address │ │ │ └── annotations.xml │ │ ├── annotations.xml │ │ ├── header │ │ │ └── annotations.xml │ │ └── message │ │ │ └── annotations.xml │ ├── sql │ │ └── annotations.xml │ └── xml │ │ ├── annotations.xml │ │ ├── datatype │ │ └── annotations.xml │ │ ├── namespace │ │ └── annotations.xml │ │ ├── parsers │ │ └── annotations.xml │ │ ├── transform │ │ ├── annotations.xml │ │ ├── dom │ │ │ └── annotations.xml │ │ ├── sax │ │ │ └── annotations.xml │ │ └── stream │ │ │ └── annotations.xml │ │ ├── validation │ │ └── annotations.xml │ │ └── xpath │ │ └── annotations.xml ├── junit │ ├── extensions │ │ └── annotations.xml │ ├── framework │ │ └── annotations.xml │ ├── runner │ │ └── annotations.xml │ └── textui │ │ └── annotations.xml └── org │ ├── apache │ ├── commons │ │ ├── codec │ │ │ ├── annotations.xml │ │ │ ├── binary │ │ │ │ └── annotations.xml │ │ │ ├── language │ │ │ │ └── annotations.xml │ │ │ └── net │ │ │ │ └── annotations.xml │ │ ├── io │ │ │ ├── annotations.xml │ │ │ ├── comparator │ │ │ │ └── annotations.xml │ │ │ ├── filefilter │ │ │ │ └── annotations.xml │ │ │ ├── input │ │ │ │ └── annotations.xml │ │ │ └── output │ │ │ │ └── annotations.xml │ │ └── logging │ │ │ ├── annotations.xml │ │ │ └── impl │ │ │ └── annotations.xml │ ├── harmony │ │ ├── crypto │ │ │ └── internal │ │ │ │ └── annotations.xml │ │ ├── dalvik │ │ │ └── ddmc │ │ │ │ └── annotations.xml │ │ ├── kernel │ │ │ └── vm │ │ │ │ └── annotations.xml │ │ ├── security │ │ │ ├── annotations.xml │ │ │ ├── asn1 │ │ │ │ └── annotations.xml │ │ │ ├── fortress │ │ │ │ └── annotations.xml │ │ │ ├── pkcs10 │ │ │ │ └── annotations.xml │ │ │ ├── pkcs7 │ │ │ │ └── annotations.xml │ │ │ ├── pkcs8 │ │ │ │ └── annotations.xml │ │ │ ├── provider │ │ │ │ ├── cert │ │ │ │ │ └── annotations.xml │ │ │ │ └── crypto │ │ │ │ │ └── annotations.xml │ │ │ ├── utils │ │ │ │ └── annotations.xml │ │ │ ├── x501 │ │ │ │ └── annotations.xml │ │ │ └── x509 │ │ │ │ ├── annotations.xml │ │ │ │ └── tsp │ │ │ │ └── annotations.xml │ │ └── xml │ │ │ ├── annotations.xml │ │ │ ├── dom │ │ │ └── annotations.xml │ │ │ └── parsers │ │ │ └── annotations.xml │ ├── http │ │ ├── annotations.xml │ │ ├── auth │ │ │ ├── annotations.xml │ │ │ └── params │ │ │ │ └── annotations.xml │ │ ├── client │ │ │ ├── annotations.xml │ │ │ ├── entity │ │ │ │ └── annotations.xml │ │ │ ├── methods │ │ │ │ └── annotations.xml │ │ │ ├── params │ │ │ │ └── annotations.xml │ │ │ ├── protocol │ │ │ │ └── annotations.xml │ │ │ └── utils │ │ │ │ └── annotations.xml │ │ ├── conn │ │ │ ├── annotations.xml │ │ │ ├── params │ │ │ │ └── annotations.xml │ │ │ ├── routing │ │ │ │ └── annotations.xml │ │ │ ├── scheme │ │ │ │ └── annotations.xml │ │ │ ├── ssl │ │ │ │ └── annotations.xml │ │ │ └── util │ │ │ │ └── annotations.xml │ │ ├── cookie │ │ │ ├── annotations.xml │ │ │ └── params │ │ │ │ └── annotations.xml │ │ ├── entity │ │ │ └── annotations.xml │ │ ├── impl │ │ │ ├── annotations.xml │ │ │ ├── auth │ │ │ │ └── annotations.xml │ │ │ ├── client │ │ │ │ └── annotations.xml │ │ │ ├── conn │ │ │ │ ├── annotations.xml │ │ │ │ └── tsccm │ │ │ │ │ └── annotations.xml │ │ │ ├── cookie │ │ │ │ └── annotations.xml │ │ │ ├── entity │ │ │ │ └── annotations.xml │ │ │ └── io │ │ │ │ └── annotations.xml │ │ ├── io │ │ │ └── annotations.xml │ │ ├── message │ │ │ └── annotations.xml │ │ ├── params │ │ │ └── annotations.xml │ │ ├── protocol │ │ │ └── annotations.xml │ │ └── util │ │ │ └── annotations.xml │ ├── james │ │ └── mime4j │ │ │ ├── annotations.xml │ │ │ ├── codec │ │ │ └── annotations.xml │ │ │ ├── decoder │ │ │ └── annotations.xml │ │ │ ├── field │ │ │ ├── address │ │ │ │ ├── annotations.xml │ │ │ │ └── parser │ │ │ │ │ └── annotations.xml │ │ │ ├── annotations.xml │ │ │ ├── contenttype │ │ │ │ └── parser │ │ │ │ │ └── annotations.xml │ │ │ └── datetime │ │ │ │ ├── annotations.xml │ │ │ │ └── parser │ │ │ │ └── annotations.xml │ │ │ ├── message │ │ │ └── annotations.xml │ │ │ └── util │ │ │ └── annotations.xml │ ├── xalan │ │ ├── annotations.xml │ │ ├── extensions │ │ │ └── annotations.xml │ │ ├── processor │ │ │ └── annotations.xml │ │ ├── res │ │ │ └── annotations.xml │ │ ├── serialize │ │ │ └── annotations.xml │ │ ├── templates │ │ │ └── annotations.xml │ │ ├── transformer │ │ │ └── annotations.xml │ │ └── xslt │ │ │ └── annotations.xml │ ├── xml │ │ ├── dtm │ │ │ ├── annotations.xml │ │ │ └── ref │ │ │ │ ├── annotations.xml │ │ │ │ ├── dom2dtm │ │ │ │ └── annotations.xml │ │ │ │ └── sax2dtm │ │ │ │ └── annotations.xml │ │ ├── res │ │ │ └── annotations.xml │ │ ├── serializer │ │ │ ├── annotations.xml │ │ │ ├── dom3 │ │ │ │ └── annotations.xml │ │ │ └── utils │ │ │ │ └── annotations.xml │ │ └── utils │ │ │ ├── annotations.xml │ │ │ └── res │ │ │ └── annotations.xml │ └── xpath │ │ ├── annotations.xml │ │ ├── axes │ │ └── annotations.xml │ │ ├── compiler │ │ └── annotations.xml │ │ ├── functions │ │ └── annotations.xml │ │ ├── jaxp │ │ └── annotations.xml │ │ ├── objects │ │ └── annotations.xml │ │ ├── operations │ │ └── annotations.xml │ │ ├── patterns │ │ └── annotations.xml │ │ └── res │ │ └── annotations.xml │ ├── json │ └── annotations.xml │ ├── w3c │ └── dom │ │ ├── annotations.xml │ │ └── ls │ │ └── annotations.xml │ ├── xml │ └── sax │ │ ├── annotations.xml │ │ ├── ext │ │ └── annotations.xml │ │ └── helpers │ │ └── annotations.xml │ └── xmlpull │ └── v1 │ ├── annotations.xml │ └── sax2 │ └── annotations.xml ├── commandLineClient ├── commandLineClient.iml ├── inferred │ ├── kotlin-android-sdk-annotations.jaif │ └── kotlin-jdk-annotations.jaif └── src │ ├── META-INF │ └── MANIFEST.MF │ └── org │ └── jetbrains │ └── kannotator │ └── client │ ├── OptionsHelper.java │ ├── PrintStreamProgressIndicator.kt │ ├── androidCombine.kt │ ├── main.kt │ └── sdk.kt ├── idea_runner └── idea_runner.iml ├── integration_tests ├── integration_tests.iml ├── test │ ├── funDependency │ │ ├── BuildGraphForLibrariesTest.kt │ │ ├── LibPackageDependencyGraphTest.kt │ │ └── LibPackageNonAffectingDependencyGraphTest.kt │ └── inference │ │ └── IntegratedInferenceTest.kt └── tests.xml ├── jdk-custom ├── README.md ├── annotations │ ├── delta.xml │ ├── java │ │ ├── awt │ │ │ ├── annotations.xml │ │ │ └── geom │ │ │ │ └── annotations.xml │ │ ├── io │ │ │ └── annotations.xml │ │ ├── lang │ │ │ ├── annotation │ │ │ │ └── annotations.xml │ │ │ ├── annotations.xml │ │ │ └── reflect │ │ │ │ └── annotations.xml │ │ ├── math │ │ │ └── annotations.xml │ │ ├── sql │ │ │ └── annotations.xml │ │ └── util │ │ │ ├── annotations.xml │ │ │ ├── concurrent │ │ │ ├── annotations.xml │ │ │ └── locks │ │ │ │ └── annotations.xml │ │ │ ├── regex │ │ │ └── annotations.xml │ │ │ └── zip │ │ │ └── annotations.xml │ └── javax │ │ ├── swing │ │ ├── annotations.xml │ │ └── event │ │ │ └── annotations.xml │ │ └── xml │ │ └── namespace │ │ └── annotations.xml ├── exceptions.txt ├── includedClassNames.txt ├── interestingPackages.txt ├── postprocess │ ├── java │ │ ├── awt │ │ │ └── annotations.xml │ │ └── util │ │ │ ├── annotations.xml │ │ │ └── concurrent │ │ │ └── annotations.xml │ ├── javax │ │ └── swing │ │ │ └── annotations.xml │ └── sun │ │ └── swing │ │ └── plaf │ │ └── synth │ │ └── annotations.xml ├── propagationOverrides.txt └── removed.md ├── kannotator.iml ├── kotlinlib └── kotlinlib │ ├── LazyValue.kt │ ├── addIfNotNull.kt │ ├── fileGetParents.kt │ ├── flags.kt │ ├── graphTraversal.kt │ ├── hashMapWithDefault.kt │ ├── indexed.kt │ ├── invertedFileRecurse.kt │ ├── linkedHashSetExtractFirst.kt │ ├── list.kt │ ├── listRemoveLast.kt │ ├── mapGetOrThrow.kt │ ├── mapKeysAndValues.kt │ ├── mapWithIndex.kt │ ├── matcherGet.kt │ ├── merge.kt │ ├── notNull.kt │ ├── orEmpty.kt │ ├── pairsToMap.kt │ ├── recurseDirsWithFilter.kt │ ├── replaceExtension.kt │ ├── replaceSuffix.kt │ ├── sortByToString.kt │ ├── stringGetOrElse.kt │ ├── stringLineSeparator.kt │ ├── toSortedList.kt │ └── topologicalSort.kt ├── lib ├── asm-debug-all-4.0.jar ├── asm-src-4.0.zip ├── asm.annotations │ └── org │ │ └── objectweb │ │ └── asm │ │ ├── annotations.xml │ │ ├── commons │ │ └── annotations.xml │ │ ├── signature │ │ └── annotations.xml │ │ ├── tree │ │ ├── analysis │ │ │ └── annotations.xml │ │ └── annotations.xml │ │ └── util │ │ └── annotations.xml ├── default-package.jar ├── extensions.jar ├── gs-collections-2.0.0 │ ├── annotations │ │ └── com │ │ │ └── gs │ │ │ └── collections │ │ │ └── impl │ │ │ └── set │ │ │ └── strategy │ │ │ └── mutable │ │ │ └── annotations.xml │ ├── gs-collections-2.0.0.jar │ ├── gs-collections-api-2.0.0.jar │ └── sources │ │ ├── gs-collections-2.0.0-sources.jar │ │ └── gs-collections-api-2.0.0-sources.jar ├── guava-13.0.1.jar ├── guava-13.0.1 │ ├── annotations │ │ └── com │ │ │ └── google │ │ │ └── common │ │ │ ├── base │ │ │ ├── annotations.xml │ │ │ └── internal │ │ │ │ └── annotations.xml │ │ │ ├── cache │ │ │ └── annotations.xml │ │ │ ├── collect │ │ │ └── annotations.xml │ │ │ ├── eventbus │ │ │ └── annotations.xml │ │ │ ├── hash │ │ │ └── annotations.xml │ │ │ ├── io │ │ │ └── annotations.xml │ │ │ ├── math │ │ │ └── annotations.xml │ │ │ ├── net │ │ │ └── annotations.xml │ │ │ ├── primitives │ │ │ └── annotations.xml │ │ │ ├── reflect │ │ │ └── annotations.xml │ │ │ └── util │ │ │ └── concurrent │ │ │ └── annotations.xml │ └── sources │ │ └── guava-13.0.1-sources.jar ├── jdk-annotations │ ├── java │ │ ├── awt │ │ │ ├── annotations.xml │ │ │ └── geom │ │ │ │ └── annotations.xml │ │ ├── io │ │ │ └── annotations.xml │ │ ├── lang │ │ │ ├── annotation │ │ │ │ └── annotations.xml │ │ │ ├── annotations.xml │ │ │ └── reflect │ │ │ │ └── annotations.xml │ │ ├── math │ │ │ └── annotations.xml │ │ ├── sql │ │ │ └── annotations.xml │ │ └── util │ │ │ ├── annotations.xml │ │ │ ├── concurrent │ │ │ ├── annotations.xml │ │ │ └── locks │ │ │ │ └── annotations.xml │ │ │ ├── regex │ │ │ └── annotations.xml │ │ │ └── zip │ │ │ └── annotations.xml │ └── javax │ │ ├── swing │ │ ├── annotations.xml │ │ └── event │ │ │ └── annotations.xml │ │ └── xml │ │ └── namespace │ │ └── annotations.xml ├── jdk │ └── jre-7u12-windows-rt.jar ├── jetbrains-annotations.jar ├── jps-server.jar ├── jung-2.0.1 │ ├── annotations │ │ ├── edu │ │ │ └── uci │ │ │ │ └── ics │ │ │ │ └── jung │ │ │ │ ├── graph │ │ │ │ └── annotations.xml │ │ │ │ └── visualization │ │ │ │ └── annotations.xml │ │ └── org │ │ │ └── apache │ │ │ └── commons │ │ │ └── collections15 │ │ │ └── annotations.xml │ ├── collections-generic-4.01.jar │ ├── colt-1.2.0.jar │ ├── concurrent-1.3.4.jar │ ├── j3d-core-1.3.1.jar │ ├── jung-3d-2.0.1.jar │ ├── jung-3d-demos-2.0.1.jar │ ├── jung-algorithms-2.0.1.jar │ ├── jung-api-2.0.1.jar │ ├── jung-graph-impl-2.0.1.jar │ ├── jung-io-2.0.1.jar │ ├── jung-jai-2.0.1.jar │ ├── jung-jai-samples-2.0.1.jar │ ├── jung-samples-2.0.1.jar │ ├── jung-visualization-2.0.1.jar │ ├── src │ │ ├── colt-1.2.0-src.jar │ │ ├── concurrent-1.3.4-src.jar │ │ ├── jung-3d-2.0.1-sources.jar │ │ ├── jung-3d-demos-2.0.1-sources.jar │ │ ├── jung-algorithms-2.0.1-sources.jar │ │ ├── jung-api-2.0.1-sources.jar │ │ ├── jung-graph-impl-2.0.1-sources.jar │ │ ├── jung-io-2.0.1-sources.jar │ │ ├── jung-jai-2.0.1-sources.jar │ │ ├── jung-jai-samples-2.0.1-sources.jar │ │ ├── jung-samples-2.0.1-sources.jar │ │ └── jung-visualization-2.0.1-sources.jar │ ├── stax-api-1.0.1.jar │ ├── vecmath-1.3.1.jar │ └── wstx-asl-3.2.6.jar ├── junit-4.10-src.jar ├── junit-4.10.jar ├── lookup.jar ├── plume-src.zip ├── plume.jar └── task_manager.jar ├── license ├── LICENSE └── third_party │ ├── asm-license.txt │ ├── gs-collections-license.txt │ ├── plume-lib-license.txt │ └── scene-lib-license.txt ├── manifest.properties ├── plugin ├── META-INF │ └── plugin.xml ├── annotations │ └── com │ │ └── intellij │ │ ├── ide │ │ └── util │ │ │ └── treeView │ │ │ └── annotations.xml │ │ ├── openapi │ │ ├── actionSystem │ │ │ └── annotations.xml │ │ ├── application │ │ │ └── annotations.xml │ │ ├── components │ │ │ └── annotations.xml │ │ ├── module │ │ │ └── annotations.xml │ │ ├── progress │ │ │ └── annotations.xml │ │ ├── roots │ │ │ ├── annotations.xml │ │ │ └── libraries │ │ │ │ └── annotations.xml │ │ ├── util │ │ │ └── annotations.xml │ │ └── vfs │ │ │ └── annotations.xml │ │ ├── psi │ │ └── impl │ │ │ └── annotations.xml │ │ ├── ui │ │ ├── annotations.xml │ │ └── content │ │ │ ├── annotations.xml │ │ │ └── tabs │ │ │ └── annotations.xml │ │ └── util │ │ ├── annotations.xml │ │ └── ui │ │ └── classpath │ │ └── annotations.xml ├── plugin.iml └── src │ └── org │ └── jetbrains │ └── kannotator │ └── plugin │ ├── KannotatorReportSubmitter.kt │ ├── actions │ ├── AnnotateJarAction.kt │ ├── InferenceTask.kt │ └── dialog │ │ ├── InferAnnotationDialog.form │ │ ├── InferAnnotationDialog.java │ │ ├── LibraryCheckTreeNodes.kt │ │ ├── LibraryCheckboxTree.kt │ │ ├── LibraryCheckboxTreeRenderer.kt │ │ └── LibraryItemsTreeController.kt │ ├── ideaUtils │ └── application.kt │ ├── notifications │ └── AnnotateKotlinLibNotification.kt │ └── persistentState │ └── KannotatorSettings.java ├── scene-lib ├── scene-lib.iml └── src │ ├── annotations │ ├── AnnotationBuilder.java │ ├── AnnotationFactory.java │ ├── Annotations.java │ ├── ArrayBuilder.java │ ├── SceneAnnotation.java │ ├── el │ │ ├── ABlock.java │ │ ├── AClass.java │ │ ├── AElement.java │ │ ├── AExpression.java │ │ ├── AMethod.java │ │ ├── AScene.java │ │ ├── ATypeElement.java │ │ ├── ATypeElementWithType.java │ │ ├── AnnotationDef.java │ │ ├── BoundLocation.java │ │ ├── DefCollector.java │ │ ├── DefException.java │ │ ├── InnerTypeLocation.java │ │ ├── LocalLocation.java │ │ ├── RelativeLocation.java │ │ ├── TypeASTMapper.java │ │ ├── TypeIndexLocation.java │ │ └── package-info.java │ ├── ext │ │ ├── InvalidPathEntryException.java │ │ ├── TypeAnnotationPosition.java │ │ ├── TypePathEntry.java │ │ └── TypePathEntryKind.java │ ├── field │ │ ├── AnnotationAFT.java │ │ ├── AnnotationFieldType.java │ │ ├── ArrayAFT.java │ │ ├── BasicAFT.java │ │ ├── ClassTokenAFT.java │ │ ├── EnumAFT.java │ │ ├── ScalarAFT.java │ │ └── package-info.java │ ├── io │ │ ├── ASTPath.java │ │ ├── IOUtils.java │ │ ├── IndexFileParser.java │ │ ├── IndexFileWriter.java │ │ ├── ParseException.java │ │ ├── Tree.java │ │ └── package-info.java │ ├── package-info.java │ └── util │ │ ├── EqualByStringRepresentation.java │ │ ├── Hasher.java │ │ ├── Strings.java │ │ └── coll │ │ ├── KeyedSet.java │ │ ├── Keyer.java │ │ ├── LinkedHashKeyedSet.java │ │ ├── VivifyingMap.java │ │ └── WrapperMap.java │ └── type │ ├── ArrayType.java │ ├── BoundedType.java │ ├── DeclaredType.java │ └── Type.java ├── sdk_annotations.xml ├── src └── org │ └── jetbrains │ └── kannotator │ ├── ErrorHandler.kt │ ├── annotations │ ├── annotations.kt │ ├── annotationsImpl.kt │ └── io │ │ ├── AnnotationsFormat.kt │ │ ├── GenericSignatureRenderer.kt │ │ ├── InferenceTask.kt │ │ ├── annotationKeyParser.kt │ │ ├── annotationParser.kt │ │ ├── annotationWriter.kt │ │ ├── classFileAnnotations.kt │ │ ├── sceneLibAdapter.kt │ │ └── typePositionSerializer.kt │ ├── annotationsInference │ ├── engine │ │ ├── Analyzer.java │ │ ├── InferenceFrame.java │ │ ├── Subroutine.java │ │ ├── analysisResult.kt │ │ ├── frameTransformer.kt │ │ ├── pseudoErrorInsnNode.kt │ │ └── resultFrame.kt │ ├── interpreter │ │ ├── interpreterUtil.kt │ │ ├── qualifiedInterpreter.kt │ │ ├── qualifiers.kt │ │ └── values.kt │ ├── mutability │ │ ├── mutability.kt │ │ └── mutabilityAnnotations.kt │ ├── nullability │ │ ├── nullability.kt │ │ └── nullabilityAnnotations.kt │ └── propagation │ │ ├── annotationLattice.kt │ │ ├── conflictResolution.kt │ │ └── metadataPropagation.kt │ ├── declarations │ ├── declarations.kt │ ├── positions.kt │ └── types.kt │ ├── graphs │ ├── dependencyGraphs │ │ ├── DependencyGraph.kt │ │ ├── funDependencyBuilder.kt │ │ └── packageDependencyBuilder.kt │ ├── graph.kt │ ├── hierarchyGraphs │ │ ├── classHierarchyBuilder.kt │ │ ├── hierarchyGraph.kt │ │ └── methodHierarchyBuilder.kt │ ├── impl.kt │ └── util │ │ ├── SccFinder.kt │ │ └── topologicalSort.kt │ ├── index │ ├── FieldsInforBuilder.kt │ ├── FileBasedDeclarationIndex.kt │ ├── declarationIndex.kt │ └── methodParameterLoader.kt │ ├── kotlinSignatures │ ├── genericSignatureParser.kt │ ├── kotlinSignatureRenderer.kt │ └── typeSubstitutor.kt │ ├── main │ ├── common.kt │ └── inferrers.kt │ ├── runtime │ └── annotations │ │ ├── AnalysisType.java │ │ ├── Mutable.java │ │ ├── Propagated.java │ │ └── ReadOnly.java │ └── util │ ├── InstructionRenderer.kt │ ├── asmUtil.kt │ └── jarUtil.kt ├── test ├── annotations │ ├── ReadAnnotationsTest.kt │ └── io │ │ ├── AnnotationKeyParserTest.kt │ │ ├── AnnotationKeyStringMatchingTest.kt │ │ ├── AnnotationPositionSerializerTest.kt │ │ ├── WriteAnnotationTest.kt │ │ └── WriteJaifTest.kt ├── classHierarchy │ ├── ClassHierarchyTest.kt │ └── MethodHierarchyTest.kt ├── funDependency │ ├── FunDependencyGraphMain.kt │ ├── FunDependencyGraphTest.kt │ ├── SCCFinderTest.kt │ ├── TopoplogicalSortTest.kt │ └── jung.kt ├── index │ ├── AnnotationIndexTest.kt │ ├── FieldDependencyTest.kt │ └── MethodIndexTest.kt ├── inference │ ├── AbstractInferenceTest.kt │ ├── AnnotationsXMLGenerator.kt │ ├── FieldsInferenceTest.kt │ ├── InferenceWithDependenciesTest.kt │ ├── MutabilityInferenceTest.kt │ ├── NullabilityInferenceTest.kt │ └── propagation │ │ ├── ConflictResolutionTest.kt │ │ ├── FullPropagationTest.kt │ │ └── propagationTestUtil.kt ├── kotlinSignatures │ └── KotlinSignatureRendererTest.kt └── util │ ├── ClassPathDeclarationIndex.kt │ ├── ClassesFromClassPath.kt │ ├── NamedTest.java │ ├── inferrers.kt │ ├── junit.kt │ └── util.kt ├── testData ├── annotations │ ├── io │ │ └── spec │ │ │ ├── Nested$A.jaif │ │ │ ├── Nested.java │ │ │ ├── NotNullArgs.jaif │ │ │ ├── NotNullArgs.java │ │ │ ├── NotNullFields.jaif │ │ │ ├── NotNullFields.java │ │ │ ├── NotNullReturn.jaif │ │ │ ├── NotNullReturn.java │ │ │ ├── NullableArgs.jaif │ │ │ ├── NullableArgs.java │ │ │ ├── NullableFields.jaif │ │ │ ├── NullableFields.java │ │ │ ├── NullableReturn.jaif │ │ │ ├── NullableReturn.java │ │ │ └── package.jaif │ ├── read │ │ ├── constructor.txt │ │ ├── constructor.xml │ │ ├── errors │ │ │ ├── missedNameForAnnotation.txt │ │ │ ├── missedNameForAnnotation.xml │ │ │ ├── missedNameForItem.txt │ │ │ ├── missedNameForItem.xml │ │ │ ├── missedNameForVal.txt │ │ │ ├── missedNameForVal.xml │ │ │ ├── missedValForVal.txt │ │ │ ├── missedValForVal.xml │ │ │ ├── unknownTag.txt │ │ │ └── unknownTag.xml │ │ ├── escaped.txt │ │ ├── escaped.xml │ │ ├── property.txt │ │ ├── property.xml │ │ ├── simple.txt │ │ ├── simple.xml │ │ ├── twoAnnotationsForOneMethod.txt │ │ ├── twoAnnotationsForOneMethod.xml │ │ ├── twoValsForOneAnnotation.txt │ │ └── twoValsForOneAnnotation.xml │ └── write │ │ └── annotations.xml ├── classHierarchy │ ├── gs-collections.txt │ ├── jung.txt │ ├── methodHierarchy │ │ ├── gs-collections.txt │ │ └── jung.txt │ └── overriddenMethods │ │ ├── gs-collections.txt │ │ ├── jung.txt │ │ └── overridesVisibility │ │ ├── Base.java │ │ ├── Derived.java │ │ ├── result.txt │ │ └── subpackage │ │ └── DerivedInSubpackage.java ├── dependencies │ ├── a │ │ └── A.java │ ├── annotations │ │ └── dependencies │ │ │ └── b │ │ │ └── annotations.xml │ ├── b │ │ └── B.java │ └── expected.txt ├── fieldDependency │ └── simple │ │ ├── Simple.java │ │ └── simple.txt ├── funDependency │ ├── callDependencyForNonAnnotativeMethod │ │ ├── CallDependencyForNonAnnotativeMethod.java │ │ ├── callDependencyForNonAnnotativeMethod.sorted.txt │ │ └── callDependencyForNonAnnotativeMethod.txt │ ├── dependOnConstructorBecauseOfFields │ │ ├── DependOnConstructorBecauseOfFields.java │ │ ├── DependOnConstructorBecauseOfFields.sorted.txt │ │ └── dependOnConstructorBecauseOfFields.txt │ ├── funInDifferentClasses │ │ ├── First.java │ │ ├── Second.java │ │ ├── funInDifferentClasses.sorted.txt │ │ └── funInDifferentClasses.txt │ ├── jdkNonAffectingPackages │ │ └── jre-7u12-windows-rt.txt │ ├── jdkPackages │ │ └── jre-7u12-windows-rt.txt │ ├── multipleComponents │ │ ├── First.java │ │ └── multipleComponents.sorted.txt │ ├── multiplyInvokeOfMethod │ │ ├── First.java │ │ ├── Second.java │ │ ├── multiplyInvokeOfMethod.sorted.txt │ │ └── multiplyInvokeOfMethod.txt │ ├── noAnnotatedMethods │ │ ├── First.java │ │ ├── noAnnotatedMethods.sorted.txt │ │ └── noAnnotatedMethods.txt │ ├── recursiveFun │ │ ├── First.java │ │ ├── Second.java │ │ ├── recursiveFun.sorted.txt │ │ └── recursiveFun.txt │ └── simple │ │ ├── Simple.java │ │ ├── missing.txt │ │ ├── simple.sorted.txt │ │ └── simple.txt ├── inferenceData │ ├── MutabilityInferenceTestClass.java │ ├── MutabilityInferenceTestLib.java │ ├── NullabilityFieldsInferenceTestClass.java │ ├── NullabilityInferenceTestClass.java │ ├── NullabilityInferenceTestLib.java │ ├── annotations │ │ ├── ExpectMutable.java │ │ ├── ExpectNotNull.java │ │ ├── ExpectNullable.java │ │ └── ExpectReadOnly.java │ ├── integrated │ │ ├── kotlinSignatures │ │ │ ├── asm-debug-all-4.0.jar.annotations.xml │ │ │ ├── collections-generic-4.01.jar.annotations.xml │ │ │ ├── colt-1.2.0.jar.annotations.xml │ │ │ ├── concurrent-1.3.4.jar.annotations.xml │ │ │ ├── default-package.jar.annotations.xml │ │ │ ├── extensions.jar.annotations.xml │ │ │ ├── gs-collections-2.0.0.jar.annotations.xml │ │ │ ├── gs-collections-api-2.0.0.jar.annotations.xml │ │ │ ├── guava-13.0.1.jar.annotations.xml │ │ │ ├── j3d-core-1.3.1.jar.annotations.xml │ │ │ ├── jps-server.jar.annotations.xml │ │ │ ├── jre-7u12-windows-rt.jar.annotations.xml │ │ │ ├── jung-3d-2.0.1.jar.annotations.xml │ │ │ ├── jung-3d-demos-2.0.1.jar.annotations.xml │ │ │ ├── jung-algorithms-2.0.1.jar.annotations.xml │ │ │ ├── jung-api-2.0.1.jar.annotations.xml │ │ │ ├── jung-graph-impl-2.0.1.jar.annotations.xml │ │ │ ├── jung-io-2.0.1.jar.annotations.xml │ │ │ ├── jung-jai-2.0.1.jar.annotations.xml │ │ │ ├── jung-jai-samples-2.0.1.jar.annotations.xml │ │ │ ├── jung-samples-2.0.1.jar.annotations.xml │ │ │ ├── jung-visualization-2.0.1.jar.annotations.xml │ │ │ ├── junit-4.10.jar.annotations.xml │ │ │ ├── stax-api-1.0.1.jar.annotations.xml │ │ │ ├── vecmath-1.3.1.jar.annotations.xml │ │ │ └── wstx-asl-3.2.6.jar.annotations.xml │ │ ├── mutability │ │ │ ├── asm-debug-all-4.0.jar.annotations.txt │ │ │ ├── collections-generic-4.01.jar.annotations.txt │ │ │ ├── colt-1.2.0.jar.annotations.txt │ │ │ ├── concurrent-1.3.4.jar.annotations.txt │ │ │ ├── default-package.jar.annotations.txt │ │ │ ├── extensions.jar.annotations.txt │ │ │ ├── gs-collections-2.0.0.jar.annotations.txt │ │ │ ├── gs-collections-api-2.0.0.jar.annotations.txt │ │ │ ├── guava-13.0.1.jar.annotations.txt │ │ │ ├── j3d-core-1.3.1.jar.annotations.txt │ │ │ ├── jps-server.jar.annotations.txt │ │ │ ├── jre-7u12-windows-rt.jar.annotations.txt │ │ │ ├── jung-3d-2.0.1.jar.annotations.txt │ │ │ ├── jung-3d-demos-2.0.1.jar.annotations.txt │ │ │ ├── jung-algorithms-2.0.1.jar.annotations.txt │ │ │ ├── jung-api-2.0.1.jar.annotations.txt │ │ │ ├── jung-graph-impl-2.0.1.jar.annotations.txt │ │ │ ├── jung-io-2.0.1.jar.annotations.txt │ │ │ ├── jung-jai-2.0.1.jar.annotations.txt │ │ │ ├── jung-jai-samples-2.0.1.jar.annotations.txt │ │ │ ├── jung-samples-2.0.1.jar.annotations.txt │ │ │ ├── jung-visualization-2.0.1.jar.annotations.txt │ │ │ ├── junit-4.10.jar.annotations.txt │ │ │ ├── stax-api-1.0.1.jar.annotations.txt │ │ │ ├── vecmath-1.3.1.jar.annotations.txt │ │ │ └── wstx-asl-3.2.6.jar.annotations.txt │ │ └── nullability │ │ │ ├── asm-debug-all-4.0.jar.annotations.txt │ │ │ ├── collections-generic-4.01.jar.annotations.txt │ │ │ ├── colt-1.2.0.jar.annotations.txt │ │ │ ├── concurrent-1.3.4.jar.annotations.txt │ │ │ ├── default-package.jar.annotations.txt │ │ │ ├── exceptions.txt │ │ │ ├── extensions.jar.annotations.txt │ │ │ ├── gs-collections-2.0.0.jar.annotations.txt │ │ │ ├── gs-collections-api-2.0.0.jar.annotations.txt │ │ │ ├── guava-13.0.1.jar.annotations.txt │ │ │ ├── guava-existing-annotations │ │ │ └── annotations.xml │ │ │ ├── includedAnnotationKeys.txt │ │ │ ├── includedClassNames.txt │ │ │ ├── j3d-core-1.3.1.jar.annotations.txt │ │ │ ├── jps-server.jar.annotations.txt │ │ │ ├── jre-7u12-windows-rt.jar.annotations.txt │ │ │ ├── jung-3d-2.0.1.jar.annotations.txt │ │ │ ├── jung-3d-demos-2.0.1.jar.annotations.txt │ │ │ ├── jung-algorithms-2.0.1.jar.annotations.txt │ │ │ ├── jung-api-2.0.1.jar.annotations.txt │ │ │ ├── jung-graph-impl-2.0.1.jar.annotations.txt │ │ │ ├── jung-io-2.0.1.jar.annotations.txt │ │ │ ├── jung-jai-2.0.1.jar.annotations.txt │ │ │ ├── jung-jai-samples-2.0.1.jar.annotations.txt │ │ │ ├── jung-samples-2.0.1.jar.annotations.txt │ │ │ ├── jung-visualization-2.0.1.jar.annotations.txt │ │ │ ├── junit-4.10.jar.annotations.txt │ │ │ ├── propagationOverrides.txt │ │ │ ├── stax-api-1.0.1.jar.annotations.txt │ │ │ ├── vecmath-1.3.1.jar.annotations.txt │ │ │ └── wstx-asl-3.2.6.jar.annotations.txt │ └── propagation │ │ ├── conflicts │ │ ├── AHierarchy.java │ │ ├── Conflicts.java │ │ ├── DiamondHierarchy.java │ │ ├── LinearHierarchy.java │ │ ├── XHierarchyAnnotatedMiddle.java │ │ ├── XHierarchyConflictMiddle.java │ │ ├── XHierarchyHollowMiddle.java │ │ └── YHierarchy.java │ │ └── fullPropagation │ │ ├── ConflictsAndPropagation.java │ │ ├── DiamondHierarchy.java │ │ ├── LinearHierarchy.java │ │ ├── LinearHierarchy2.java │ │ ├── LinearHierarchyAlterChildren.java │ │ ├── LinearHierarchyCovariantReturn.java │ │ ├── LinearHierarchyMultipleAnnotations.java │ │ ├── TwoHierarchies.java │ │ ├── XHierarchyAnnotatedMiddle.java │ │ ├── XHierarchyHollowMiddle.java │ │ └── YHierarchy.java ├── interpreter │ ├── EDU │ │ └── oswego │ │ │ └── cs │ │ │ └── dl │ │ │ └── util │ │ │ └── concurrent │ │ │ └── ClockDaemon$RunLoop.txt │ ├── _long │ │ ├── MixedVars.java │ │ ├── MixedVars.txt │ │ ├── Test$Listener.txt │ │ └── Test.java │ ├── _static │ │ ├── Test.java │ │ └── Test.txt │ ├── assignments │ │ ├── Test.java │ │ └── Test.txt │ ├── loops │ │ ├── Test.java │ │ └── Test.txt │ ├── oneParam │ │ ├── Test.txt │ │ └── test.kt │ ├── primitiveParamsAndReturn │ │ ├── Test.java │ │ └── Test.txt │ ├── simpleIf │ │ ├── Test.txt │ │ └── test.kt │ └── staticInitializer │ │ ├── Test.java │ │ └── Test.txt ├── jet │ └── runtime │ │ └── typeinfo │ │ └── KotlinSignature.kt └── kotlinSignatures │ └── KotlinSignatureTestData.java └── update_dependencies.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | kannotator -------------------------------------------------------------------------------- /.idea/ant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/ant.xml -------------------------------------------------------------------------------- /.idea/artifacts/KAnnotatorCli.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/artifacts/KAnnotatorCli.xml -------------------------------------------------------------------------------- /.idea/artifacts/KAnnotatorPlugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/artifacts/KAnnotatorPlugin.xml -------------------------------------------------------------------------------- /.idea/artifacts/integration_tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/artifacts/integration_tests.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/kannotator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/kannotator.xml -------------------------------------------------------------------------------- /.idea/libraries/KotlinJavaRuntime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/libraries/KotlinJavaRuntime.xml -------------------------------------------------------------------------------- /.idea/libraries/asm_debug_all_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/libraries/asm_debug_all_4_0.xml -------------------------------------------------------------------------------- /.idea/libraries/gs_collections_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/libraries/gs_collections_2_0.xml -------------------------------------------------------------------------------- /.idea/libraries/guava_13_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/libraries/guava_13_0_1.xml -------------------------------------------------------------------------------- /.idea/libraries/idea_bootstrap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/libraries/idea_bootstrap.xml -------------------------------------------------------------------------------- /.idea/libraries/idea_for_plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/libraries/idea_for_plugin.xml -------------------------------------------------------------------------------- /.idea/libraries/idea_full.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/libraries/idea_full.xml -------------------------------------------------------------------------------- /.idea/libraries/jetbrains_annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/libraries/jetbrains_annotations.xml -------------------------------------------------------------------------------- /.idea/libraries/jung_2_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/libraries/jung_2_0_1.xml -------------------------------------------------------------------------------- /.idea/libraries/junit_4_10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/libraries/junit_4_10.xml -------------------------------------------------------------------------------- /.idea/libraries/plume.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/libraries/plume.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/FunctionalTests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/runConfigurations/FunctionalTests.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/IntegrationTests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/runConfigurations/IntegrationTests.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/KAnnotatorPlugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/runConfigurations/KAnnotatorPlugin.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/README.md -------------------------------------------------------------------------------- /TeamCityBuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/TeamCityBuild.xml -------------------------------------------------------------------------------- /VerifyAndPublish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/VerifyAndPublish.xml -------------------------------------------------------------------------------- /android-custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-custom/README.md -------------------------------------------------------------------------------- /android-custom/android-19-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-custom/android-19-api.jar -------------------------------------------------------------------------------- /android-custom/android-sdk_4.4.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-custom/android-sdk_4.4.2.jar -------------------------------------------------------------------------------- /android-custom/exceptions.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android-custom/exclude.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-custom/exclude.xml -------------------------------------------------------------------------------- /android-custom/includedClassNames.txt: -------------------------------------------------------------------------------- 1 | java/lang/AbstractStringBuilder -------------------------------------------------------------------------------- /android-custom/interestingPackages.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android-custom/postprocess/android/view/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-custom/postprocess/android/view/annotations.xml -------------------------------------------------------------------------------- /android-custom/propagationOverrides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-custom/propagationOverrides.txt -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/accounts/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/accounts/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/animation/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/animation/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/annotation/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/annotation/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/app/admin/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/app/admin/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/app/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/app/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/app/backup/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/app/backup/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/appwidget/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/appwidget/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/bluetooth/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/bluetooth/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/content/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/content/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/content/pm/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/content/pm/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/content/res/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/content/res/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/database/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/database/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/database/sqlite/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/database/sqlite/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/ddm/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/ddm/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/drm/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/drm/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/drm/mobile1/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/drm/mobile1/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/filterfw/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/filterfw/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/filterfw/core/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/filterfw/core/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/filterfw/format/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/filterfw/format/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/filterfw/geometry/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/filterfw/geometry/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/filterfw/io/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/filterfw/io/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/filterpacks/base/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/filterpacks/base/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/filterpacks/numeric/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/filterpacks/numeric/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/filterpacks/text/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/filterpacks/text/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/filterpacks/ui/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/filterpacks/ui/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/gesture/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/gesture/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/graphics/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/graphics/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/graphics/drawable/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/graphics/drawable/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/hardware/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/hardware/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/hardware/display/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/hardware/display/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/hardware/input/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/hardware/input/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/hardware/location/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/hardware/location/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/hardware/usb/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/hardware/usb/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/inputmethodservice/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/inputmethodservice/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/location/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/location/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/media/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/media/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/media/audiofx/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/media/audiofx/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/media/effect/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/media/effect/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/media/videoeditor/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/media/videoeditor/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/mtp/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/mtp/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/net/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/net/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/net/http/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/net/http/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/net/nsd/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/net/nsd/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/net/rtp/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/net/rtp/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/net/sip/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/net/sip/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/net/wifi/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/net/wifi/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/net/wifi/p2p/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/net/wifi/p2p/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/net/wifi/p2p/nsd/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/net/wifi/p2p/nsd/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/net/wimax/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/net/wimax/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/nfc/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/nfc/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/nfc/tech/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/nfc/tech/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/opengl/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/opengl/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/os/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/os/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/os/storage/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/os/storage/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/preference/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/preference/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/provider/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/provider/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/renderscript/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/renderscript/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/sax/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/sax/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/security/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/security/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/service/dreams/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/service/dreams/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/service/textservice/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/service/textservice/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/service/wallpaper/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/service/wallpaper/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/speech/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/speech/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/speech/srec/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/speech/srec/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/speech/tts/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/speech/tts/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/support/v13/app/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/support/v13/app/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/support/v4/app/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/support/v4/app/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/support/v4/content/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/support/v4/content/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/support/v4/net/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/support/v4/net/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/support/v4/os/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/support/v4/os/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/support/v4/text/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/support/v4/text/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/support/v4/util/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/support/v4/util/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/support/v4/view/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/support/v4/view/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/support/v4/widget/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/support/v4/widget/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/telephony/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/telephony/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/telephony/cdma/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/telephony/cdma/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/telephony/gsm/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/telephony/gsm/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/test/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/test/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/test/mock/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/test/mock/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/test/suitebuilder/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/test/suitebuilder/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/text/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/text/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/text/format/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/text/format/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/text/method/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/text/method/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/text/style/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/text/style/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/text/util/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/text/util/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/util/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/util/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/view/accessibility/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/view/accessibility/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/view/animation/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/view/animation/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/view/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/view/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/view/inputmethod/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/view/inputmethod/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/view/textservice/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/view/textservice/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/webkit/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/webkit/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/android/widget/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/android/widget/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/dalvik/annotation/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/dalvik/annotation/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/dalvik/system/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/dalvik/system/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/dalvik/system/profiler/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/dalvik/system/profiler/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/awt/font/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/awt/font/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/beans/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/beans/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/io/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/io/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/lang/annotation/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/lang/annotation/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/lang/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/lang/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/lang/ref/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/lang/ref/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/lang/reflect/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/lang/reflect/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/math/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/math/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/net/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/net/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/nio/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/nio/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/nio/channels/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/nio/channels/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/nio/channels/spi/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/nio/channels/spi/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/nio/charset/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/nio/charset/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/security/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/security/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/security/cert/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/security/cert/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/security/interfaces/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/security/interfaces/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/security/spec/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/security/spec/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/sql/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/sql/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/text/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/text/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/util/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/util/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/util/concurrent/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/util/concurrent/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/util/concurrent/atomic/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/util/concurrent/atomic/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/util/concurrent/locks/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/util/concurrent/locks/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/util/jar/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/util/jar/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/util/logging/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/util/logging/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/util/prefs/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/util/prefs/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/util/regex/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/util/regex/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/java/util/zip/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/java/util/zip/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/annotation/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/annotation/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/annotation/meta/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/annotation/meta/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/crypto/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/crypto/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/crypto/interfaces/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/crypto/interfaces/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/crypto/spec/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/crypto/spec/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/net/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/net/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/net/ssl/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/net/ssl/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/obex/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/obex/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/security/auth/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/security/auth/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/security/auth/x500/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/security/auth/x500/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/security/cert/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/security/cert/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/sip/address/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/sip/address/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/sip/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/sip/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/sip/header/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/sip/header/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/sip/message/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/sip/message/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/sql/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/sql/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/xml/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/xml/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/xml/datatype/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/xml/datatype/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/xml/namespace/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/xml/namespace/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/xml/parsers/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/xml/parsers/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/xml/transform/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/xml/transform/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/xml/transform/dom/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/xml/transform/dom/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/xml/transform/sax/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/xml/transform/sax/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/xml/transform/stream/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/xml/transform/stream/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/xml/validation/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/xml/validation/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/javax/xml/xpath/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/javax/xml/xpath/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/junit/extensions/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/junit/extensions/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/junit/framework/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/junit/framework/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/junit/runner/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/junit/runner/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/junit/textui/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/junit/textui/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/commons/codec/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/commons/codec/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/commons/io/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/commons/io/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/commons/io/input/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/commons/io/input/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/commons/logging/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/commons/logging/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/harmony/security/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/harmony/security/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/harmony/xml/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/harmony/xml/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/harmony/xml/dom/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/harmony/xml/dom/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/auth/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/auth/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/auth/params/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/auth/params/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/client/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/client/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/conn/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/conn/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/conn/params/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/conn/params/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/conn/scheme/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/conn/scheme/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/conn/ssl/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/conn/ssl/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/conn/util/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/conn/util/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/cookie/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/cookie/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/entity/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/entity/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/impl/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/impl/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/impl/auth/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/impl/auth/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/impl/client/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/impl/client/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/impl/conn/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/impl/conn/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/impl/cookie/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/impl/cookie/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/impl/entity/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/impl/entity/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/impl/io/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/impl/io/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/io/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/io/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/message/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/message/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/params/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/params/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/protocol/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/protocol/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/http/util/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/http/util/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/james/mime4j/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/james/mime4j/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xalan/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xalan/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xalan/extensions/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xalan/extensions/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xalan/processor/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xalan/processor/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xalan/res/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xalan/res/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xalan/serialize/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xalan/serialize/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xalan/templates/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xalan/templates/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xalan/xslt/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xalan/xslt/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xml/dtm/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xml/dtm/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xml/dtm/ref/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xml/dtm/ref/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xml/res/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xml/res/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xml/serializer/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xml/serializer/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xml/utils/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xml/utils/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xml/utils/res/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xml/utils/res/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xpath/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xpath/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xpath/axes/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xpath/axes/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xpath/compiler/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xpath/compiler/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xpath/functions/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xpath/functions/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xpath/jaxp/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xpath/jaxp/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xpath/objects/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xpath/objects/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xpath/operations/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xpath/operations/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xpath/patterns/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xpath/patterns/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/apache/xpath/res/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/apache/xpath/res/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/json/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/json/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/w3c/dom/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/w3c/dom/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/w3c/dom/ls/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/w3c/dom/ls/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/xml/sax/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/xml/sax/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/xml/sax/ext/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/xml/sax/ext/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/xml/sax/helpers/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/xml/sax/helpers/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/xmlpull/v1/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/xmlpull/v1/annotations.xml -------------------------------------------------------------------------------- /android-sdk-annotations-kotlin-plugin/org/xmlpull/v1/sax2/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/android-sdk-annotations-kotlin-plugin/org/xmlpull/v1/sax2/annotations.xml -------------------------------------------------------------------------------- /commandLineClient/commandLineClient.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/commandLineClient/commandLineClient.iml -------------------------------------------------------------------------------- /commandLineClient/inferred/kotlin-android-sdk-annotations.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/commandLineClient/inferred/kotlin-android-sdk-annotations.jaif -------------------------------------------------------------------------------- /commandLineClient/inferred/kotlin-jdk-annotations.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/commandLineClient/inferred/kotlin-jdk-annotations.jaif -------------------------------------------------------------------------------- /commandLineClient/src/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/commandLineClient/src/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /commandLineClient/src/org/jetbrains/kannotator/client/OptionsHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/commandLineClient/src/org/jetbrains/kannotator/client/OptionsHelper.java -------------------------------------------------------------------------------- /commandLineClient/src/org/jetbrains/kannotator/client/androidCombine.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/commandLineClient/src/org/jetbrains/kannotator/client/androidCombine.kt -------------------------------------------------------------------------------- /commandLineClient/src/org/jetbrains/kannotator/client/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/commandLineClient/src/org/jetbrains/kannotator/client/main.kt -------------------------------------------------------------------------------- /commandLineClient/src/org/jetbrains/kannotator/client/sdk.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/commandLineClient/src/org/jetbrains/kannotator/client/sdk.kt -------------------------------------------------------------------------------- /idea_runner/idea_runner.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/idea_runner/idea_runner.iml -------------------------------------------------------------------------------- /integration_tests/integration_tests.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/integration_tests/integration_tests.iml -------------------------------------------------------------------------------- /integration_tests/test/funDependency/BuildGraphForLibrariesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/integration_tests/test/funDependency/BuildGraphForLibrariesTest.kt -------------------------------------------------------------------------------- /integration_tests/test/funDependency/LibPackageDependencyGraphTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/integration_tests/test/funDependency/LibPackageDependencyGraphTest.kt -------------------------------------------------------------------------------- /integration_tests/test/funDependency/LibPackageNonAffectingDependencyGraphTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/integration_tests/test/funDependency/LibPackageNonAffectingDependencyGraphTest.kt -------------------------------------------------------------------------------- /integration_tests/test/inference/IntegratedInferenceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/integration_tests/test/inference/IntegratedInferenceTest.kt -------------------------------------------------------------------------------- /integration_tests/tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/integration_tests/tests.xml -------------------------------------------------------------------------------- /jdk-custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/README.md -------------------------------------------------------------------------------- /jdk-custom/annotations/delta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/annotations/delta.xml -------------------------------------------------------------------------------- /jdk-custom/annotations/java/awt/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/annotations/java/awt/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/annotations/java/awt/geom/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/annotations/java/awt/geom/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/annotations/java/io/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/annotations/java/io/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/annotations/java/lang/annotation/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/annotations/java/lang/annotation/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/annotations/java/lang/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/annotations/java/lang/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/annotations/java/lang/reflect/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/annotations/java/lang/reflect/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/annotations/java/math/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/annotations/java/math/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/annotations/java/sql/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/annotations/java/sql/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/annotations/java/util/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/annotations/java/util/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/annotations/java/util/concurrent/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/annotations/java/util/concurrent/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/annotations/java/util/concurrent/locks/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/annotations/java/util/concurrent/locks/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/annotations/java/util/regex/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/annotations/java/util/regex/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/annotations/java/util/zip/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/annotations/java/util/zip/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/annotations/javax/swing/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/annotations/javax/swing/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/annotations/javax/swing/event/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/annotations/javax/swing/event/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/annotations/javax/xml/namespace/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/annotations/javax/xml/namespace/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/exceptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/exceptions.txt -------------------------------------------------------------------------------- /jdk-custom/includedClassNames.txt: -------------------------------------------------------------------------------- 1 | java/lang/AbstractStringBuilder -------------------------------------------------------------------------------- /jdk-custom/interestingPackages.txt: -------------------------------------------------------------------------------- 1 | java 2 | javax 3 | org 4 | -------------------------------------------------------------------------------- /jdk-custom/postprocess/java/awt/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/postprocess/java/awt/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/postprocess/java/util/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/postprocess/java/util/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/postprocess/java/util/concurrent/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/postprocess/java/util/concurrent/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/postprocess/javax/swing/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/postprocess/javax/swing/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/postprocess/sun/swing/plaf/synth/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/postprocess/sun/swing/plaf/synth/annotations.xml -------------------------------------------------------------------------------- /jdk-custom/propagationOverrides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/propagationOverrides.txt -------------------------------------------------------------------------------- /jdk-custom/removed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/jdk-custom/removed.md -------------------------------------------------------------------------------- /kannotator.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kannotator.iml -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/LazyValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/LazyValue.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/addIfNotNull.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/addIfNotNull.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/fileGetParents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/fileGetParents.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/flags.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/flags.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/graphTraversal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/graphTraversal.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/hashMapWithDefault.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/hashMapWithDefault.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/indexed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/indexed.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/invertedFileRecurse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/invertedFileRecurse.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/linkedHashSetExtractFirst.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/linkedHashSetExtractFirst.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/list.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/list.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/listRemoveLast.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/listRemoveLast.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/mapGetOrThrow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/mapGetOrThrow.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/mapKeysAndValues.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/mapKeysAndValues.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/mapWithIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/mapWithIndex.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/matcherGet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/matcherGet.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/merge.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/merge.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/notNull.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/notNull.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/orEmpty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/orEmpty.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/pairsToMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/pairsToMap.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/recurseDirsWithFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/recurseDirsWithFilter.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/replaceExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/replaceExtension.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/replaceSuffix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/replaceSuffix.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/sortByToString.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/sortByToString.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/stringGetOrElse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/stringGetOrElse.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/stringLineSeparator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/stringLineSeparator.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/toSortedList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/toSortedList.kt -------------------------------------------------------------------------------- /kotlinlib/kotlinlib/topologicalSort.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/kotlinlib/kotlinlib/topologicalSort.kt -------------------------------------------------------------------------------- /lib/asm-debug-all-4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/asm-debug-all-4.0.jar -------------------------------------------------------------------------------- /lib/asm-src-4.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/asm-src-4.0.zip -------------------------------------------------------------------------------- /lib/asm.annotations/org/objectweb/asm/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/asm.annotations/org/objectweb/asm/annotations.xml -------------------------------------------------------------------------------- /lib/asm.annotations/org/objectweb/asm/commons/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/asm.annotations/org/objectweb/asm/commons/annotations.xml -------------------------------------------------------------------------------- /lib/asm.annotations/org/objectweb/asm/signature/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/asm.annotations/org/objectweb/asm/signature/annotations.xml -------------------------------------------------------------------------------- /lib/asm.annotations/org/objectweb/asm/tree/analysis/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/asm.annotations/org/objectweb/asm/tree/analysis/annotations.xml -------------------------------------------------------------------------------- /lib/asm.annotations/org/objectweb/asm/tree/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/asm.annotations/org/objectweb/asm/tree/annotations.xml -------------------------------------------------------------------------------- /lib/asm.annotations/org/objectweb/asm/util/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/asm.annotations/org/objectweb/asm/util/annotations.xml -------------------------------------------------------------------------------- /lib/default-package.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/default-package.jar -------------------------------------------------------------------------------- /lib/extensions.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/extensions.jar -------------------------------------------------------------------------------- /lib/gs-collections-2.0.0/gs-collections-2.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/gs-collections-2.0.0/gs-collections-2.0.0.jar -------------------------------------------------------------------------------- /lib/gs-collections-2.0.0/gs-collections-api-2.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/gs-collections-2.0.0/gs-collections-api-2.0.0.jar -------------------------------------------------------------------------------- /lib/gs-collections-2.0.0/sources/gs-collections-2.0.0-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/gs-collections-2.0.0/sources/gs-collections-2.0.0-sources.jar -------------------------------------------------------------------------------- /lib/gs-collections-2.0.0/sources/gs-collections-api-2.0.0-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/gs-collections-2.0.0/sources/gs-collections-api-2.0.0-sources.jar -------------------------------------------------------------------------------- /lib/guava-13.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/guava-13.0.1.jar -------------------------------------------------------------------------------- /lib/guava-13.0.1/annotations/com/google/common/base/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/guava-13.0.1/annotations/com/google/common/base/annotations.xml -------------------------------------------------------------------------------- /lib/guava-13.0.1/annotations/com/google/common/base/internal/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/guava-13.0.1/annotations/com/google/common/base/internal/annotations.xml -------------------------------------------------------------------------------- /lib/guava-13.0.1/annotations/com/google/common/cache/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/guava-13.0.1/annotations/com/google/common/cache/annotations.xml -------------------------------------------------------------------------------- /lib/guava-13.0.1/annotations/com/google/common/collect/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/guava-13.0.1/annotations/com/google/common/collect/annotations.xml -------------------------------------------------------------------------------- /lib/guava-13.0.1/annotations/com/google/common/eventbus/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/guava-13.0.1/annotations/com/google/common/eventbus/annotations.xml -------------------------------------------------------------------------------- /lib/guava-13.0.1/annotations/com/google/common/hash/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/guava-13.0.1/annotations/com/google/common/hash/annotations.xml -------------------------------------------------------------------------------- /lib/guava-13.0.1/annotations/com/google/common/io/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/guava-13.0.1/annotations/com/google/common/io/annotations.xml -------------------------------------------------------------------------------- /lib/guava-13.0.1/annotations/com/google/common/math/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/guava-13.0.1/annotations/com/google/common/math/annotations.xml -------------------------------------------------------------------------------- /lib/guava-13.0.1/annotations/com/google/common/net/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/guava-13.0.1/annotations/com/google/common/net/annotations.xml -------------------------------------------------------------------------------- /lib/guava-13.0.1/annotations/com/google/common/primitives/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/guava-13.0.1/annotations/com/google/common/primitives/annotations.xml -------------------------------------------------------------------------------- /lib/guava-13.0.1/annotations/com/google/common/reflect/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/guava-13.0.1/annotations/com/google/common/reflect/annotations.xml -------------------------------------------------------------------------------- /lib/guava-13.0.1/annotations/com/google/common/util/concurrent/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/guava-13.0.1/annotations/com/google/common/util/concurrent/annotations.xml -------------------------------------------------------------------------------- /lib/guava-13.0.1/sources/guava-13.0.1-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/guava-13.0.1/sources/guava-13.0.1-sources.jar -------------------------------------------------------------------------------- /lib/jdk-annotations/java/awt/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jdk-annotations/java/awt/annotations.xml -------------------------------------------------------------------------------- /lib/jdk-annotations/java/awt/geom/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jdk-annotations/java/awt/geom/annotations.xml -------------------------------------------------------------------------------- /lib/jdk-annotations/java/io/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jdk-annotations/java/io/annotations.xml -------------------------------------------------------------------------------- /lib/jdk-annotations/java/lang/annotation/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jdk-annotations/java/lang/annotation/annotations.xml -------------------------------------------------------------------------------- /lib/jdk-annotations/java/lang/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jdk-annotations/java/lang/annotations.xml -------------------------------------------------------------------------------- /lib/jdk-annotations/java/lang/reflect/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jdk-annotations/java/lang/reflect/annotations.xml -------------------------------------------------------------------------------- /lib/jdk-annotations/java/math/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jdk-annotations/java/math/annotations.xml -------------------------------------------------------------------------------- /lib/jdk-annotations/java/sql/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jdk-annotations/java/sql/annotations.xml -------------------------------------------------------------------------------- /lib/jdk-annotations/java/util/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jdk-annotations/java/util/annotations.xml -------------------------------------------------------------------------------- /lib/jdk-annotations/java/util/concurrent/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jdk-annotations/java/util/concurrent/annotations.xml -------------------------------------------------------------------------------- /lib/jdk-annotations/java/util/concurrent/locks/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jdk-annotations/java/util/concurrent/locks/annotations.xml -------------------------------------------------------------------------------- /lib/jdk-annotations/java/util/regex/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jdk-annotations/java/util/regex/annotations.xml -------------------------------------------------------------------------------- /lib/jdk-annotations/java/util/zip/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jdk-annotations/java/util/zip/annotations.xml -------------------------------------------------------------------------------- /lib/jdk-annotations/javax/swing/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jdk-annotations/javax/swing/annotations.xml -------------------------------------------------------------------------------- /lib/jdk-annotations/javax/swing/event/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jdk-annotations/javax/swing/event/annotations.xml -------------------------------------------------------------------------------- /lib/jdk-annotations/javax/xml/namespace/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jdk-annotations/javax/xml/namespace/annotations.xml -------------------------------------------------------------------------------- /lib/jdk/jre-7u12-windows-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jdk/jre-7u12-windows-rt.jar -------------------------------------------------------------------------------- /lib/jetbrains-annotations.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jetbrains-annotations.jar -------------------------------------------------------------------------------- /lib/jps-server.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jps-server.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/annotations/edu/uci/ics/jung/graph/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/annotations/edu/uci/ics/jung/graph/annotations.xml -------------------------------------------------------------------------------- /lib/jung-2.0.1/annotations/edu/uci/ics/jung/visualization/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/annotations/edu/uci/ics/jung/visualization/annotations.xml -------------------------------------------------------------------------------- /lib/jung-2.0.1/annotations/org/apache/commons/collections15/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/annotations/org/apache/commons/collections15/annotations.xml -------------------------------------------------------------------------------- /lib/jung-2.0.1/collections-generic-4.01.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/collections-generic-4.01.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/colt-1.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/colt-1.2.0.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/concurrent-1.3.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/concurrent-1.3.4.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/j3d-core-1.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/j3d-core-1.3.1.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/jung-3d-2.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/jung-3d-2.0.1.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/jung-3d-demos-2.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/jung-3d-demos-2.0.1.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/jung-algorithms-2.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/jung-algorithms-2.0.1.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/jung-api-2.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/jung-api-2.0.1.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/jung-graph-impl-2.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/jung-graph-impl-2.0.1.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/jung-io-2.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/jung-io-2.0.1.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/jung-jai-2.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/jung-jai-2.0.1.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/jung-jai-samples-2.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/jung-jai-samples-2.0.1.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/jung-samples-2.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/jung-samples-2.0.1.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/jung-visualization-2.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/jung-visualization-2.0.1.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/src/colt-1.2.0-src.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/src/colt-1.2.0-src.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/src/concurrent-1.3.4-src.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/src/concurrent-1.3.4-src.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/src/jung-3d-2.0.1-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/src/jung-3d-2.0.1-sources.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/src/jung-3d-demos-2.0.1-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/src/jung-3d-demos-2.0.1-sources.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/src/jung-algorithms-2.0.1-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/src/jung-algorithms-2.0.1-sources.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/src/jung-api-2.0.1-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/src/jung-api-2.0.1-sources.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/src/jung-graph-impl-2.0.1-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/src/jung-graph-impl-2.0.1-sources.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/src/jung-io-2.0.1-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/src/jung-io-2.0.1-sources.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/src/jung-jai-2.0.1-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/src/jung-jai-2.0.1-sources.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/src/jung-jai-samples-2.0.1-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/src/jung-jai-samples-2.0.1-sources.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/src/jung-samples-2.0.1-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/src/jung-samples-2.0.1-sources.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/src/jung-visualization-2.0.1-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/src/jung-visualization-2.0.1-sources.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/stax-api-1.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/stax-api-1.0.1.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/vecmath-1.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/vecmath-1.3.1.jar -------------------------------------------------------------------------------- /lib/jung-2.0.1/wstx-asl-3.2.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/jung-2.0.1/wstx-asl-3.2.6.jar -------------------------------------------------------------------------------- /lib/junit-4.10-src.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/junit-4.10-src.jar -------------------------------------------------------------------------------- /lib/junit-4.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/junit-4.10.jar -------------------------------------------------------------------------------- /lib/lookup.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/lookup.jar -------------------------------------------------------------------------------- /lib/plume-src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/plume-src.zip -------------------------------------------------------------------------------- /lib/plume.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/plume.jar -------------------------------------------------------------------------------- /lib/task_manager.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/lib/task_manager.jar -------------------------------------------------------------------------------- /license/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/license/LICENSE -------------------------------------------------------------------------------- /license/third_party/asm-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/license/third_party/asm-license.txt -------------------------------------------------------------------------------- /license/third_party/gs-collections-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/license/third_party/gs-collections-license.txt -------------------------------------------------------------------------------- /license/third_party/plume-lib-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/license/third_party/plume-lib-license.txt -------------------------------------------------------------------------------- /license/third_party/scene-lib-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/license/third_party/scene-lib-license.txt -------------------------------------------------------------------------------- /manifest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/manifest.properties -------------------------------------------------------------------------------- /plugin/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/META-INF/plugin.xml -------------------------------------------------------------------------------- /plugin/annotations/com/intellij/ide/util/treeView/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/annotations/com/intellij/ide/util/treeView/annotations.xml -------------------------------------------------------------------------------- /plugin/annotations/com/intellij/openapi/actionSystem/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/annotations/com/intellij/openapi/actionSystem/annotations.xml -------------------------------------------------------------------------------- /plugin/annotations/com/intellij/openapi/application/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/annotations/com/intellij/openapi/application/annotations.xml -------------------------------------------------------------------------------- /plugin/annotations/com/intellij/openapi/components/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/annotations/com/intellij/openapi/components/annotations.xml -------------------------------------------------------------------------------- /plugin/annotations/com/intellij/openapi/module/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/annotations/com/intellij/openapi/module/annotations.xml -------------------------------------------------------------------------------- /plugin/annotations/com/intellij/openapi/progress/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/annotations/com/intellij/openapi/progress/annotations.xml -------------------------------------------------------------------------------- /plugin/annotations/com/intellij/openapi/roots/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/annotations/com/intellij/openapi/roots/annotations.xml -------------------------------------------------------------------------------- /plugin/annotations/com/intellij/openapi/roots/libraries/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/annotations/com/intellij/openapi/roots/libraries/annotations.xml -------------------------------------------------------------------------------- /plugin/annotations/com/intellij/openapi/util/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/annotations/com/intellij/openapi/util/annotations.xml -------------------------------------------------------------------------------- /plugin/annotations/com/intellij/openapi/vfs/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/annotations/com/intellij/openapi/vfs/annotations.xml -------------------------------------------------------------------------------- /plugin/annotations/com/intellij/psi/impl/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/annotations/com/intellij/psi/impl/annotations.xml -------------------------------------------------------------------------------- /plugin/annotations/com/intellij/ui/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/annotations/com/intellij/ui/annotations.xml -------------------------------------------------------------------------------- /plugin/annotations/com/intellij/ui/content/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/annotations/com/intellij/ui/content/annotations.xml -------------------------------------------------------------------------------- /plugin/annotations/com/intellij/ui/content/tabs/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/annotations/com/intellij/ui/content/tabs/annotations.xml -------------------------------------------------------------------------------- /plugin/annotations/com/intellij/util/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/annotations/com/intellij/util/annotations.xml -------------------------------------------------------------------------------- /plugin/annotations/com/intellij/util/ui/classpath/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/annotations/com/intellij/util/ui/classpath/annotations.xml -------------------------------------------------------------------------------- /plugin/plugin.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/plugin.iml -------------------------------------------------------------------------------- /plugin/src/org/jetbrains/kannotator/plugin/KannotatorReportSubmitter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/src/org/jetbrains/kannotator/plugin/KannotatorReportSubmitter.kt -------------------------------------------------------------------------------- /plugin/src/org/jetbrains/kannotator/plugin/actions/AnnotateJarAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/src/org/jetbrains/kannotator/plugin/actions/AnnotateJarAction.kt -------------------------------------------------------------------------------- /plugin/src/org/jetbrains/kannotator/plugin/actions/InferenceTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/src/org/jetbrains/kannotator/plugin/actions/InferenceTask.kt -------------------------------------------------------------------------------- /plugin/src/org/jetbrains/kannotator/plugin/actions/dialog/LibraryCheckboxTree.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/src/org/jetbrains/kannotator/plugin/actions/dialog/LibraryCheckboxTree.kt -------------------------------------------------------------------------------- /plugin/src/org/jetbrains/kannotator/plugin/ideaUtils/application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/plugin/src/org/jetbrains/kannotator/plugin/ideaUtils/application.kt -------------------------------------------------------------------------------- /scene-lib/scene-lib.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/scene-lib.iml -------------------------------------------------------------------------------- /scene-lib/src/annotations/AnnotationBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/AnnotationBuilder.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/AnnotationFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/AnnotationFactory.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/Annotations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/Annotations.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/ArrayBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/ArrayBuilder.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/SceneAnnotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/SceneAnnotation.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/el/ABlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/el/ABlock.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/el/AClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/el/AClass.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/el/AElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/el/AElement.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/el/AExpression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/el/AExpression.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/el/AMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/el/AMethod.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/el/AScene.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/el/AScene.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/el/ATypeElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/el/ATypeElement.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/el/ATypeElementWithType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/el/ATypeElementWithType.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/el/AnnotationDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/el/AnnotationDef.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/el/BoundLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/el/BoundLocation.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/el/DefCollector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/el/DefCollector.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/el/DefException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/el/DefException.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/el/InnerTypeLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/el/InnerTypeLocation.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/el/LocalLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/el/LocalLocation.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/el/RelativeLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/el/RelativeLocation.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/el/TypeASTMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/el/TypeASTMapper.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/el/TypeIndexLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/el/TypeIndexLocation.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/el/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/el/package-info.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/ext/InvalidPathEntryException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/ext/InvalidPathEntryException.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/ext/TypeAnnotationPosition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/ext/TypeAnnotationPosition.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/ext/TypePathEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/ext/TypePathEntry.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/ext/TypePathEntryKind.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/ext/TypePathEntryKind.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/field/AnnotationAFT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/field/AnnotationAFT.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/field/AnnotationFieldType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/field/AnnotationFieldType.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/field/ArrayAFT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/field/ArrayAFT.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/field/BasicAFT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/field/BasicAFT.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/field/ClassTokenAFT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/field/ClassTokenAFT.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/field/EnumAFT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/field/EnumAFT.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/field/ScalarAFT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/field/ScalarAFT.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/field/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/field/package-info.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/io/ASTPath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/io/ASTPath.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/io/IOUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/io/IOUtils.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/io/IndexFileParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/io/IndexFileParser.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/io/IndexFileWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/io/IndexFileWriter.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/io/ParseException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/io/ParseException.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/io/Tree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/io/Tree.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/io/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/io/package-info.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/package-info.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/util/EqualByStringRepresentation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/util/EqualByStringRepresentation.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/util/Hasher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/util/Hasher.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/util/Strings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/util/Strings.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/util/coll/KeyedSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/util/coll/KeyedSet.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/util/coll/Keyer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/util/coll/Keyer.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/util/coll/LinkedHashKeyedSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/util/coll/LinkedHashKeyedSet.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/util/coll/VivifyingMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/util/coll/VivifyingMap.java -------------------------------------------------------------------------------- /scene-lib/src/annotations/util/coll/WrapperMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/annotations/util/coll/WrapperMap.java -------------------------------------------------------------------------------- /scene-lib/src/type/ArrayType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/type/ArrayType.java -------------------------------------------------------------------------------- /scene-lib/src/type/BoundedType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/type/BoundedType.java -------------------------------------------------------------------------------- /scene-lib/src/type/DeclaredType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/type/DeclaredType.java -------------------------------------------------------------------------------- /scene-lib/src/type/Type.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/scene-lib/src/type/Type.java -------------------------------------------------------------------------------- /sdk_annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/sdk_annotations.xml -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/ErrorHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/ErrorHandler.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotations/annotations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotations/annotations.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotations/annotationsImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotations/annotationsImpl.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotations/io/AnnotationsFormat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotations/io/AnnotationsFormat.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotations/io/GenericSignatureRenderer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotations/io/GenericSignatureRenderer.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotations/io/InferenceTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotations/io/InferenceTask.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotations/io/annotationKeyParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotations/io/annotationKeyParser.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotations/io/annotationParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotations/io/annotationParser.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotations/io/annotationWriter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotations/io/annotationWriter.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotations/io/classFileAnnotations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotations/io/classFileAnnotations.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotations/io/sceneLibAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotations/io/sceneLibAdapter.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotations/io/typePositionSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotations/io/typePositionSerializer.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotationsInference/engine/Analyzer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotationsInference/engine/Analyzer.java -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotationsInference/engine/InferenceFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotationsInference/engine/InferenceFrame.java -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotationsInference/engine/Subroutine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotationsInference/engine/Subroutine.java -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotationsInference/engine/analysisResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotationsInference/engine/analysisResult.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotationsInference/engine/frameTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotationsInference/engine/frameTransformer.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotationsInference/engine/pseudoErrorInsnNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotationsInference/engine/pseudoErrorInsnNode.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotationsInference/engine/resultFrame.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotationsInference/engine/resultFrame.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotationsInference/interpreter/interpreterUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotationsInference/interpreter/interpreterUtil.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotationsInference/interpreter/qualifiers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotationsInference/interpreter/qualifiers.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotationsInference/interpreter/values.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotationsInference/interpreter/values.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotationsInference/mutability/mutability.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotationsInference/mutability/mutability.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/annotationsInference/nullability/nullability.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/annotationsInference/nullability/nullability.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/declarations/declarations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/declarations/declarations.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/declarations/positions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/declarations/positions.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/declarations/types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/declarations/types.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/graphs/dependencyGraphs/DependencyGraph.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/graphs/dependencyGraphs/DependencyGraph.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/graphs/dependencyGraphs/funDependencyBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/graphs/dependencyGraphs/funDependencyBuilder.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/graphs/dependencyGraphs/packageDependencyBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/graphs/dependencyGraphs/packageDependencyBuilder.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/graphs/graph.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/graphs/graph.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/graphs/hierarchyGraphs/classHierarchyBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/graphs/hierarchyGraphs/classHierarchyBuilder.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/graphs/hierarchyGraphs/hierarchyGraph.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/graphs/hierarchyGraphs/hierarchyGraph.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/graphs/hierarchyGraphs/methodHierarchyBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/graphs/hierarchyGraphs/methodHierarchyBuilder.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/graphs/impl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/graphs/impl.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/graphs/util/SccFinder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/graphs/util/SccFinder.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/graphs/util/topologicalSort.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/graphs/util/topologicalSort.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/index/FieldsInforBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/index/FieldsInforBuilder.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/index/FileBasedDeclarationIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/index/FileBasedDeclarationIndex.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/index/declarationIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/index/declarationIndex.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/index/methodParameterLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/index/methodParameterLoader.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/kotlinSignatures/genericSignatureParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/kotlinSignatures/genericSignatureParser.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/kotlinSignatures/kotlinSignatureRenderer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/kotlinSignatures/kotlinSignatureRenderer.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/kotlinSignatures/typeSubstitutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/kotlinSignatures/typeSubstitutor.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/main/common.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/main/common.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/main/inferrers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/main/inferrers.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/runtime/annotations/AnalysisType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/runtime/annotations/AnalysisType.java -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/runtime/annotations/Mutable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/runtime/annotations/Mutable.java -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/runtime/annotations/Propagated.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/runtime/annotations/Propagated.java -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/runtime/annotations/ReadOnly.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/runtime/annotations/ReadOnly.java -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/util/InstructionRenderer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/util/InstructionRenderer.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/util/asmUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/util/asmUtil.kt -------------------------------------------------------------------------------- /src/org/jetbrains/kannotator/util/jarUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/src/org/jetbrains/kannotator/util/jarUtil.kt -------------------------------------------------------------------------------- /test/annotations/ReadAnnotationsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/annotations/ReadAnnotationsTest.kt -------------------------------------------------------------------------------- /test/annotations/io/AnnotationKeyParserTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/annotations/io/AnnotationKeyParserTest.kt -------------------------------------------------------------------------------- /test/annotations/io/AnnotationKeyStringMatchingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/annotations/io/AnnotationKeyStringMatchingTest.kt -------------------------------------------------------------------------------- /test/annotations/io/AnnotationPositionSerializerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/annotations/io/AnnotationPositionSerializerTest.kt -------------------------------------------------------------------------------- /test/annotations/io/WriteAnnotationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/annotations/io/WriteAnnotationTest.kt -------------------------------------------------------------------------------- /test/annotations/io/WriteJaifTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/annotations/io/WriteJaifTest.kt -------------------------------------------------------------------------------- /test/classHierarchy/ClassHierarchyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/classHierarchy/ClassHierarchyTest.kt -------------------------------------------------------------------------------- /test/classHierarchy/MethodHierarchyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/classHierarchy/MethodHierarchyTest.kt -------------------------------------------------------------------------------- /test/funDependency/FunDependencyGraphMain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/funDependency/FunDependencyGraphMain.kt -------------------------------------------------------------------------------- /test/funDependency/FunDependencyGraphTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/funDependency/FunDependencyGraphTest.kt -------------------------------------------------------------------------------- /test/funDependency/SCCFinderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/funDependency/SCCFinderTest.kt -------------------------------------------------------------------------------- /test/funDependency/TopoplogicalSortTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/funDependency/TopoplogicalSortTest.kt -------------------------------------------------------------------------------- /test/funDependency/jung.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/funDependency/jung.kt -------------------------------------------------------------------------------- /test/index/AnnotationIndexTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/index/AnnotationIndexTest.kt -------------------------------------------------------------------------------- /test/index/FieldDependencyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/index/FieldDependencyTest.kt -------------------------------------------------------------------------------- /test/index/MethodIndexTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/index/MethodIndexTest.kt -------------------------------------------------------------------------------- /test/inference/AbstractInferenceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/inference/AbstractInferenceTest.kt -------------------------------------------------------------------------------- /test/inference/AnnotationsXMLGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/inference/AnnotationsXMLGenerator.kt -------------------------------------------------------------------------------- /test/inference/FieldsInferenceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/inference/FieldsInferenceTest.kt -------------------------------------------------------------------------------- /test/inference/InferenceWithDependenciesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/inference/InferenceWithDependenciesTest.kt -------------------------------------------------------------------------------- /test/inference/MutabilityInferenceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/inference/MutabilityInferenceTest.kt -------------------------------------------------------------------------------- /test/inference/NullabilityInferenceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/inference/NullabilityInferenceTest.kt -------------------------------------------------------------------------------- /test/inference/propagation/ConflictResolutionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/inference/propagation/ConflictResolutionTest.kt -------------------------------------------------------------------------------- /test/inference/propagation/FullPropagationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/inference/propagation/FullPropagationTest.kt -------------------------------------------------------------------------------- /test/inference/propagation/propagationTestUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/inference/propagation/propagationTestUtil.kt -------------------------------------------------------------------------------- /test/kotlinSignatures/KotlinSignatureRendererTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/kotlinSignatures/KotlinSignatureRendererTest.kt -------------------------------------------------------------------------------- /test/util/ClassPathDeclarationIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/util/ClassPathDeclarationIndex.kt -------------------------------------------------------------------------------- /test/util/ClassesFromClassPath.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/util/ClassesFromClassPath.kt -------------------------------------------------------------------------------- /test/util/NamedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/util/NamedTest.java -------------------------------------------------------------------------------- /test/util/inferrers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/util/inferrers.kt -------------------------------------------------------------------------------- /test/util/junit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/util/junit.kt -------------------------------------------------------------------------------- /test/util/util.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/test/util/util.kt -------------------------------------------------------------------------------- /testData/annotations/io/spec/Nested$A.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/io/spec/Nested$A.jaif -------------------------------------------------------------------------------- /testData/annotations/io/spec/Nested.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/io/spec/Nested.java -------------------------------------------------------------------------------- /testData/annotations/io/spec/NotNullArgs.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/io/spec/NotNullArgs.jaif -------------------------------------------------------------------------------- /testData/annotations/io/spec/NotNullArgs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/io/spec/NotNullArgs.java -------------------------------------------------------------------------------- /testData/annotations/io/spec/NotNullFields.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/io/spec/NotNullFields.jaif -------------------------------------------------------------------------------- /testData/annotations/io/spec/NotNullFields.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/io/spec/NotNullFields.java -------------------------------------------------------------------------------- /testData/annotations/io/spec/NotNullReturn.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/io/spec/NotNullReturn.jaif -------------------------------------------------------------------------------- /testData/annotations/io/spec/NotNullReturn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/io/spec/NotNullReturn.java -------------------------------------------------------------------------------- /testData/annotations/io/spec/NullableArgs.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/io/spec/NullableArgs.jaif -------------------------------------------------------------------------------- /testData/annotations/io/spec/NullableArgs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/io/spec/NullableArgs.java -------------------------------------------------------------------------------- /testData/annotations/io/spec/NullableFields.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/io/spec/NullableFields.jaif -------------------------------------------------------------------------------- /testData/annotations/io/spec/NullableFields.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/io/spec/NullableFields.java -------------------------------------------------------------------------------- /testData/annotations/io/spec/NullableReturn.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/io/spec/NullableReturn.jaif -------------------------------------------------------------------------------- /testData/annotations/io/spec/NullableReturn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/io/spec/NullableReturn.java -------------------------------------------------------------------------------- /testData/annotations/io/spec/package.jaif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/io/spec/package.jaif -------------------------------------------------------------------------------- /testData/annotations/read/constructor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/constructor.txt -------------------------------------------------------------------------------- /testData/annotations/read/constructor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/constructor.xml -------------------------------------------------------------------------------- /testData/annotations/read/errors/missedNameForAnnotation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/errors/missedNameForAnnotation.txt -------------------------------------------------------------------------------- /testData/annotations/read/errors/missedNameForAnnotation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/errors/missedNameForAnnotation.xml -------------------------------------------------------------------------------- /testData/annotations/read/errors/missedNameForItem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/errors/missedNameForItem.txt -------------------------------------------------------------------------------- /testData/annotations/read/errors/missedNameForItem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/errors/missedNameForItem.xml -------------------------------------------------------------------------------- /testData/annotations/read/errors/missedNameForVal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/errors/missedNameForVal.txt -------------------------------------------------------------------------------- /testData/annotations/read/errors/missedNameForVal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/errors/missedNameForVal.xml -------------------------------------------------------------------------------- /testData/annotations/read/errors/missedValForVal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/errors/missedValForVal.txt -------------------------------------------------------------------------------- /testData/annotations/read/errors/missedValForVal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/errors/missedValForVal.xml -------------------------------------------------------------------------------- /testData/annotations/read/errors/unknownTag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/errors/unknownTag.txt -------------------------------------------------------------------------------- /testData/annotations/read/errors/unknownTag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/errors/unknownTag.xml -------------------------------------------------------------------------------- /testData/annotations/read/escaped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/escaped.txt -------------------------------------------------------------------------------- /testData/annotations/read/escaped.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/escaped.xml -------------------------------------------------------------------------------- /testData/annotations/read/property.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/property.txt -------------------------------------------------------------------------------- /testData/annotations/read/property.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/property.xml -------------------------------------------------------------------------------- /testData/annotations/read/simple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/simple.txt -------------------------------------------------------------------------------- /testData/annotations/read/simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/simple.xml -------------------------------------------------------------------------------- /testData/annotations/read/twoAnnotationsForOneMethod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/twoAnnotationsForOneMethod.txt -------------------------------------------------------------------------------- /testData/annotations/read/twoAnnotationsForOneMethod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/twoAnnotationsForOneMethod.xml -------------------------------------------------------------------------------- /testData/annotations/read/twoValsForOneAnnotation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/twoValsForOneAnnotation.txt -------------------------------------------------------------------------------- /testData/annotations/read/twoValsForOneAnnotation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/read/twoValsForOneAnnotation.xml -------------------------------------------------------------------------------- /testData/annotations/write/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/annotations/write/annotations.xml -------------------------------------------------------------------------------- /testData/classHierarchy/gs-collections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/classHierarchy/gs-collections.txt -------------------------------------------------------------------------------- /testData/classHierarchy/jung.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/classHierarchy/jung.txt -------------------------------------------------------------------------------- /testData/classHierarchy/methodHierarchy/gs-collections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/classHierarchy/methodHierarchy/gs-collections.txt -------------------------------------------------------------------------------- /testData/classHierarchy/methodHierarchy/jung.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/classHierarchy/methodHierarchy/jung.txt -------------------------------------------------------------------------------- /testData/classHierarchy/overriddenMethods/gs-collections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/classHierarchy/overriddenMethods/gs-collections.txt -------------------------------------------------------------------------------- /testData/classHierarchy/overriddenMethods/jung.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/classHierarchy/overriddenMethods/jung.txt -------------------------------------------------------------------------------- /testData/classHierarchy/overriddenMethods/overridesVisibility/Base.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/classHierarchy/overriddenMethods/overridesVisibility/Base.java -------------------------------------------------------------------------------- /testData/classHierarchy/overriddenMethods/overridesVisibility/Derived.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/classHierarchy/overriddenMethods/overridesVisibility/Derived.java -------------------------------------------------------------------------------- /testData/classHierarchy/overriddenMethods/overridesVisibility/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/classHierarchy/overriddenMethods/overridesVisibility/result.txt -------------------------------------------------------------------------------- /testData/dependencies/a/A.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/dependencies/a/A.java -------------------------------------------------------------------------------- /testData/dependencies/annotations/dependencies/b/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/dependencies/annotations/dependencies/b/annotations.xml -------------------------------------------------------------------------------- /testData/dependencies/b/B.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/dependencies/b/B.java -------------------------------------------------------------------------------- /testData/dependencies/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/dependencies/expected.txt -------------------------------------------------------------------------------- /testData/fieldDependency/simple/Simple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/fieldDependency/simple/Simple.java -------------------------------------------------------------------------------- /testData/fieldDependency/simple/simple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/fieldDependency/simple/simple.txt -------------------------------------------------------------------------------- /testData/funDependency/funInDifferentClasses/First.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/funInDifferentClasses/First.java -------------------------------------------------------------------------------- /testData/funDependency/funInDifferentClasses/Second.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/funInDifferentClasses/Second.java -------------------------------------------------------------------------------- /testData/funDependency/funInDifferentClasses/funInDifferentClasses.sorted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/funInDifferentClasses/funInDifferentClasses.sorted.txt -------------------------------------------------------------------------------- /testData/funDependency/funInDifferentClasses/funInDifferentClasses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/funInDifferentClasses/funInDifferentClasses.txt -------------------------------------------------------------------------------- /testData/funDependency/jdkNonAffectingPackages/jre-7u12-windows-rt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/jdkNonAffectingPackages/jre-7u12-windows-rt.txt -------------------------------------------------------------------------------- /testData/funDependency/jdkPackages/jre-7u12-windows-rt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/jdkPackages/jre-7u12-windows-rt.txt -------------------------------------------------------------------------------- /testData/funDependency/multipleComponents/First.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/multipleComponents/First.java -------------------------------------------------------------------------------- /testData/funDependency/multipleComponents/multipleComponents.sorted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/multipleComponents/multipleComponents.sorted.txt -------------------------------------------------------------------------------- /testData/funDependency/multiplyInvokeOfMethod/First.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/multiplyInvokeOfMethod/First.java -------------------------------------------------------------------------------- /testData/funDependency/multiplyInvokeOfMethod/Second.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/multiplyInvokeOfMethod/Second.java -------------------------------------------------------------------------------- /testData/funDependency/multiplyInvokeOfMethod/multiplyInvokeOfMethod.sorted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/multiplyInvokeOfMethod/multiplyInvokeOfMethod.sorted.txt -------------------------------------------------------------------------------- /testData/funDependency/multiplyInvokeOfMethod/multiplyInvokeOfMethod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/multiplyInvokeOfMethod/multiplyInvokeOfMethod.txt -------------------------------------------------------------------------------- /testData/funDependency/noAnnotatedMethods/First.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/noAnnotatedMethods/First.java -------------------------------------------------------------------------------- /testData/funDependency/noAnnotatedMethods/noAnnotatedMethods.sorted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/noAnnotatedMethods/noAnnotatedMethods.sorted.txt -------------------------------------------------------------------------------- /testData/funDependency/noAnnotatedMethods/noAnnotatedMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/noAnnotatedMethods/noAnnotatedMethods.txt -------------------------------------------------------------------------------- /testData/funDependency/recursiveFun/First.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/recursiveFun/First.java -------------------------------------------------------------------------------- /testData/funDependency/recursiveFun/Second.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/recursiveFun/Second.java -------------------------------------------------------------------------------- /testData/funDependency/recursiveFun/recursiveFun.sorted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/recursiveFun/recursiveFun.sorted.txt -------------------------------------------------------------------------------- /testData/funDependency/recursiveFun/recursiveFun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/recursiveFun/recursiveFun.txt -------------------------------------------------------------------------------- /testData/funDependency/simple/Simple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/simple/Simple.java -------------------------------------------------------------------------------- /testData/funDependency/simple/missing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/simple/missing.txt -------------------------------------------------------------------------------- /testData/funDependency/simple/simple.sorted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/simple/simple.sorted.txt -------------------------------------------------------------------------------- /testData/funDependency/simple/simple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/funDependency/simple/simple.txt -------------------------------------------------------------------------------- /testData/inferenceData/MutabilityInferenceTestClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/MutabilityInferenceTestClass.java -------------------------------------------------------------------------------- /testData/inferenceData/MutabilityInferenceTestLib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/MutabilityInferenceTestLib.java -------------------------------------------------------------------------------- /testData/inferenceData/NullabilityFieldsInferenceTestClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/NullabilityFieldsInferenceTestClass.java -------------------------------------------------------------------------------- /testData/inferenceData/NullabilityInferenceTestClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/NullabilityInferenceTestClass.java -------------------------------------------------------------------------------- /testData/inferenceData/NullabilityInferenceTestLib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/NullabilityInferenceTestLib.java -------------------------------------------------------------------------------- /testData/inferenceData/annotations/ExpectMutable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/annotations/ExpectMutable.java -------------------------------------------------------------------------------- /testData/inferenceData/annotations/ExpectNotNull.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/annotations/ExpectNotNull.java -------------------------------------------------------------------------------- /testData/inferenceData/annotations/ExpectNullable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/annotations/ExpectNullable.java -------------------------------------------------------------------------------- /testData/inferenceData/annotations/ExpectReadOnly.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/annotations/ExpectReadOnly.java -------------------------------------------------------------------------------- /testData/inferenceData/integrated/kotlinSignatures/colt-1.2.0.jar.annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/integrated/kotlinSignatures/colt-1.2.0.jar.annotations.xml -------------------------------------------------------------------------------- /testData/inferenceData/integrated/mutability/colt-1.2.0.jar.annotations.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testData/inferenceData/integrated/mutability/concurrent-1.3.4.jar.annotations.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testData/inferenceData/integrated/mutability/default-package.jar.annotations.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testData/inferenceData/integrated/mutability/extensions.jar.annotations.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testData/inferenceData/integrated/mutability/gs-collections-api-2.0.0.jar.annotations.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testData/inferenceData/integrated/mutability/guava-13.0.1.jar.annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/integrated/mutability/guava-13.0.1.jar.annotations.txt -------------------------------------------------------------------------------- /testData/inferenceData/integrated/mutability/j3d-core-1.3.1.jar.annotations.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testData/inferenceData/integrated/mutability/jps-server.jar.annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/integrated/mutability/jps-server.jar.annotations.txt -------------------------------------------------------------------------------- /testData/inferenceData/integrated/mutability/jung-3d-2.0.1.jar.annotations.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testData/inferenceData/integrated/mutability/jung-3d-demos-2.0.1.jar.annotations.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testData/inferenceData/integrated/mutability/jung-api-2.0.1.jar.annotations.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testData/inferenceData/integrated/mutability/jung-graph-impl-2.0.1.jar.annotations.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testData/inferenceData/integrated/mutability/jung-io-2.0.1.jar.annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/integrated/mutability/jung-io-2.0.1.jar.annotations.txt -------------------------------------------------------------------------------- /testData/inferenceData/integrated/mutability/jung-jai-2.0.1.jar.annotations.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testData/inferenceData/integrated/mutability/jung-visualization-2.0.1.jar.annotations.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testData/inferenceData/integrated/mutability/junit-4.10.jar.annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/integrated/mutability/junit-4.10.jar.annotations.txt -------------------------------------------------------------------------------- /testData/inferenceData/integrated/mutability/stax-api-1.0.1.jar.annotations.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testData/inferenceData/integrated/mutability/vecmath-1.3.1.jar.annotations.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testData/inferenceData/integrated/nullability/colt-1.2.0.jar.annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/integrated/nullability/colt-1.2.0.jar.annotations.txt -------------------------------------------------------------------------------- /testData/inferenceData/integrated/nullability/default-package.jar.annotations.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testData/inferenceData/integrated/nullability/exceptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/integrated/nullability/exceptions.txt -------------------------------------------------------------------------------- /testData/inferenceData/integrated/nullability/extensions.jar.annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/integrated/nullability/extensions.jar.annotations.txt -------------------------------------------------------------------------------- /testData/inferenceData/integrated/nullability/gs-collections-api-2.0.0.jar.annotations.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testData/inferenceData/integrated/nullability/guava-13.0.1.jar.annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/integrated/nullability/guava-13.0.1.jar.annotations.txt -------------------------------------------------------------------------------- /testData/inferenceData/integrated/nullability/includedAnnotationKeys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/integrated/nullability/includedAnnotationKeys.txt -------------------------------------------------------------------------------- /testData/inferenceData/integrated/nullability/includedClassNames.txt: -------------------------------------------------------------------------------- 1 | java/lang/AbstractStringBuilder -------------------------------------------------------------------------------- /testData/inferenceData/integrated/nullability/jps-server.jar.annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/integrated/nullability/jps-server.jar.annotations.txt -------------------------------------------------------------------------------- /testData/inferenceData/integrated/nullability/jung-3d-demos-2.0.1.jar.annotations.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testData/inferenceData/integrated/nullability/junit-4.10.jar.annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/integrated/nullability/junit-4.10.jar.annotations.txt -------------------------------------------------------------------------------- /testData/inferenceData/integrated/nullability/propagationOverrides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/integrated/nullability/propagationOverrides.txt -------------------------------------------------------------------------------- /testData/inferenceData/propagation/conflicts/AHierarchy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/propagation/conflicts/AHierarchy.java -------------------------------------------------------------------------------- /testData/inferenceData/propagation/conflicts/Conflicts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/propagation/conflicts/Conflicts.java -------------------------------------------------------------------------------- /testData/inferenceData/propagation/conflicts/DiamondHierarchy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/propagation/conflicts/DiamondHierarchy.java -------------------------------------------------------------------------------- /testData/inferenceData/propagation/conflicts/LinearHierarchy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/propagation/conflicts/LinearHierarchy.java -------------------------------------------------------------------------------- /testData/inferenceData/propagation/conflicts/XHierarchyAnnotatedMiddle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/propagation/conflicts/XHierarchyAnnotatedMiddle.java -------------------------------------------------------------------------------- /testData/inferenceData/propagation/conflicts/XHierarchyConflictMiddle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/propagation/conflicts/XHierarchyConflictMiddle.java -------------------------------------------------------------------------------- /testData/inferenceData/propagation/conflicts/XHierarchyHollowMiddle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/propagation/conflicts/XHierarchyHollowMiddle.java -------------------------------------------------------------------------------- /testData/inferenceData/propagation/conflicts/YHierarchy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/propagation/conflicts/YHierarchy.java -------------------------------------------------------------------------------- /testData/inferenceData/propagation/fullPropagation/DiamondHierarchy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/propagation/fullPropagation/DiamondHierarchy.java -------------------------------------------------------------------------------- /testData/inferenceData/propagation/fullPropagation/LinearHierarchy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/propagation/fullPropagation/LinearHierarchy.java -------------------------------------------------------------------------------- /testData/inferenceData/propagation/fullPropagation/LinearHierarchy2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/propagation/fullPropagation/LinearHierarchy2.java -------------------------------------------------------------------------------- /testData/inferenceData/propagation/fullPropagation/TwoHierarchies.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/propagation/fullPropagation/TwoHierarchies.java -------------------------------------------------------------------------------- /testData/inferenceData/propagation/fullPropagation/XHierarchyHollowMiddle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/propagation/fullPropagation/XHierarchyHollowMiddle.java -------------------------------------------------------------------------------- /testData/inferenceData/propagation/fullPropagation/YHierarchy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/inferenceData/propagation/fullPropagation/YHierarchy.java -------------------------------------------------------------------------------- /testData/interpreter/EDU/oswego/cs/dl/util/concurrent/ClockDaemon$RunLoop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/interpreter/EDU/oswego/cs/dl/util/concurrent/ClockDaemon$RunLoop.txt -------------------------------------------------------------------------------- /testData/interpreter/_long/MixedVars.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/interpreter/_long/MixedVars.java -------------------------------------------------------------------------------- /testData/interpreter/_long/MixedVars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/interpreter/_long/MixedVars.txt -------------------------------------------------------------------------------- /testData/interpreter/_long/Test$Listener.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/interpreter/_long/Test$Listener.txt -------------------------------------------------------------------------------- /testData/interpreter/_long/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/interpreter/_long/Test.java -------------------------------------------------------------------------------- /testData/interpreter/_static/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/interpreter/_static/Test.java -------------------------------------------------------------------------------- /testData/interpreter/_static/Test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/interpreter/_static/Test.txt -------------------------------------------------------------------------------- /testData/interpreter/assignments/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/interpreter/assignments/Test.java -------------------------------------------------------------------------------- /testData/interpreter/assignments/Test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/interpreter/assignments/Test.txt -------------------------------------------------------------------------------- /testData/interpreter/loops/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/interpreter/loops/Test.java -------------------------------------------------------------------------------- /testData/interpreter/loops/Test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/interpreter/loops/Test.txt -------------------------------------------------------------------------------- /testData/interpreter/oneParam/Test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/interpreter/oneParam/Test.txt -------------------------------------------------------------------------------- /testData/interpreter/oneParam/test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/interpreter/oneParam/test.kt -------------------------------------------------------------------------------- /testData/interpreter/primitiveParamsAndReturn/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/interpreter/primitiveParamsAndReturn/Test.java -------------------------------------------------------------------------------- /testData/interpreter/primitiveParamsAndReturn/Test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/interpreter/primitiveParamsAndReturn/Test.txt -------------------------------------------------------------------------------- /testData/interpreter/simpleIf/Test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/interpreter/simpleIf/Test.txt -------------------------------------------------------------------------------- /testData/interpreter/simpleIf/test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/interpreter/simpleIf/test.kt -------------------------------------------------------------------------------- /testData/interpreter/staticInitializer/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/interpreter/staticInitializer/Test.java -------------------------------------------------------------------------------- /testData/interpreter/staticInitializer/Test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/interpreter/staticInitializer/Test.txt -------------------------------------------------------------------------------- /testData/jet/runtime/typeinfo/KotlinSignature.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/jet/runtime/typeinfo/KotlinSignature.kt -------------------------------------------------------------------------------- /testData/kotlinSignatures/KotlinSignatureTestData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/testData/kotlinSignatures/KotlinSignatureTestData.java -------------------------------------------------------------------------------- /update_dependencies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/kannotator/HEAD/update_dependencies.xml --------------------------------------------------------------------------------