├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── bsobe │ │ └── fastbuilder │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── bsobe │ │ │ └── fastbuilder │ │ │ ├── MainActivity.kt │ │ │ └── model │ │ │ └── Item.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── bsobe │ └── fastbuilder │ └── ExampleUnitTest.kt ├── fastbuilderannotations ├── .gitignore ├── build.gradle └── src │ └── main │ └── java │ └── com │ └── bsobe │ └── fastbuilderannotations │ └── FastBuilder.kt ├── fastbuildercompiler ├── .gitignore ├── build.gradle └── src │ └── main │ ├── java │ └── com │ │ └── bsobe │ │ └── fastbuildercompiler │ │ ├── AnnotationFinder.kt │ │ ├── BuilderFactory.kt │ │ ├── FileOperations.kt │ │ ├── Processor.kt │ │ └── types │ │ ├── AnyType.kt │ │ ├── ArrayListType.kt │ │ ├── BooleanType.kt │ │ ├── DoubleType.kt │ │ ├── IntType.kt │ │ ├── IntegerType.kt │ │ ├── ListType.kt │ │ ├── LongType.kt │ │ ├── NullableBooleanType.kt │ │ ├── StringType.kt │ │ ├── Type.kt │ │ └── UnmatchedType.kt │ └── resources │ └── META-INF │ └── services │ └── javax.annotation.processing.Processor ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images └── logo.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/bsobe/fastbuilder/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/androidTest/java/com/bsobe/fastbuilder/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/bsobe/fastbuilder/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/java/com/bsobe/fastbuilder/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/bsobe/fastbuilder/model/Item.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/java/com/bsobe/fastbuilder/model/Item.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/bsobe/fastbuilder/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/app/src/test/java/com/bsobe/fastbuilder/ExampleUnitTest.kt -------------------------------------------------------------------------------- /fastbuilderannotations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuilderannotations/.gitignore -------------------------------------------------------------------------------- /fastbuilderannotations/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuilderannotations/build.gradle -------------------------------------------------------------------------------- /fastbuilderannotations/src/main/java/com/bsobe/fastbuilderannotations/FastBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuilderannotations/src/main/java/com/bsobe/fastbuilderannotations/FastBuilder.kt -------------------------------------------------------------------------------- /fastbuildercompiler/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuildercompiler/.gitignore -------------------------------------------------------------------------------- /fastbuildercompiler/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuildercompiler/build.gradle -------------------------------------------------------------------------------- /fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/AnnotationFinder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/AnnotationFinder.kt -------------------------------------------------------------------------------- /fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/BuilderFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/BuilderFactory.kt -------------------------------------------------------------------------------- /fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/FileOperations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/FileOperations.kt -------------------------------------------------------------------------------- /fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/Processor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/Processor.kt -------------------------------------------------------------------------------- /fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/AnyType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/AnyType.kt -------------------------------------------------------------------------------- /fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/ArrayListType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/ArrayListType.kt -------------------------------------------------------------------------------- /fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/BooleanType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/BooleanType.kt -------------------------------------------------------------------------------- /fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/DoubleType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/DoubleType.kt -------------------------------------------------------------------------------- /fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/IntType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/IntType.kt -------------------------------------------------------------------------------- /fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/IntegerType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/IntegerType.kt -------------------------------------------------------------------------------- /fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/ListType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/ListType.kt -------------------------------------------------------------------------------- /fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/LongType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/LongType.kt -------------------------------------------------------------------------------- /fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/NullableBooleanType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/NullableBooleanType.kt -------------------------------------------------------------------------------- /fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/StringType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/StringType.kt -------------------------------------------------------------------------------- /fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/Type.kt -------------------------------------------------------------------------------- /fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/UnmatchedType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/fastbuildercompiler/src/main/java/com/bsobe/fastbuildercompiler/types/UnmatchedType.kt -------------------------------------------------------------------------------- /fastbuildercompiler/src/main/resources/META-INF/services/javax.annotation.processing.Processor: -------------------------------------------------------------------------------- 1 | com.bsobe.fastbuildercompiler.Processor -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/images/logo.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsobe/fast-builder/HEAD/settings.gradle --------------------------------------------------------------------------------