Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
android-annotation-stubs/ | 03-May-2024 | - | 205 | 124 | ||
common/ | 03-May-2024 | - | 8,019 | 5,632 | ||
factory/ | 03-May-2024 | - | 6,311 | 3,786 | ||
service/ | 03-May-2024 | - | 1,148 | 672 | ||
util/ | 03-May-2024 | - | 70 | 51 | ||
value/ | 03-May-2024 | - | 33,734 | 24,703 | ||
.gitignore | D | 03-May-2024 | 189 | 27 | 21 | |
.travis.yml | D | 03-May-2024 | 995 | 29 | 21 | |
Android.bp | D | 03-May-2024 | 409 | 18 | 16 | |
CONTRIBUTING.md | D | 03-May-2024 | 1.6 KiB | 35 | 26 | |
LICENSE | D | 03-May-2024 | 11.1 KiB | 203 | 169 | |
METADATA | D | 03-May-2024 | 349 | 18 | 16 | |
MODULE_LICENSE_APACHE2 | D | 03-May-2024 | 0 | |||
README.md | D | 03-May-2024 | 2.5 KiB | 60 | 37 | |
build-pom.xml | D | 03-May-2024 | 812 | 27 | 25 |
README.md
1# Auto 2 3[![Build Status](https://travis-ci.org/google/auto.svg?branch=master)](https://travis-ci.org/google/auto) 4 5A collection of source code generators for [Java][java]. 6 7## Auto‽ 8 9[Java][java] is full of code that is mechanical, repetitive, typically untested 10and sometimes the source of subtle bugs. _Sounds like a job for robots!_ 11 12The Auto subprojects are a collection of code generators that automate those 13types of tasks. They create the code you would have written, but without 14the bugs. 15 16Save time. Save code. Save sanity. 17 18## Subprojects 19 20 * [AutoFactory] - JSR-330-compatible factories 21 22 [![Maven Central](https://img.shields.io/maven-central/v/com.google.auto.factory/auto-factory.svg)](https://mvnrepository.com/artifact/com.google.auto.factory/auto-factory) 23 24 * [AutoService] - Provider-configuration files for [`ServiceLoader`] 25 26 [![Maven Central](https://img.shields.io/maven-central/v/com.google.auto.service/auto-service.svg)](https://mvnrepository.com/artifact/com.google.auto.service/auto-service) 27 28 * [AutoValue] - Immutable [value-type] code generation for Java 7+. 29 30 [![Maven Central](https://img.shields.io/maven-central/v/com.google.auto.value/auto-value.svg)](https://mvnrepository.com/artifact/com.google.auto.value/auto-value) 31 32 * [Common] - Helper utilities for writing annotation processors. 33 34 [![Maven Central](https://img.shields.io/maven-central/v/com.google.auto/auto-common.svg)](https://mvnrepository.com/artifact/com.google.auto/auto-common) 35 36## License 37 38 Copyright 2013 Google LLC 39 40 Licensed under the Apache License, Version 2.0 (the "License"); 41 you may not use this file except in compliance with the License. 42 You may obtain a copy of the License at 43 44 http://www.apache.org/licenses/LICENSE-2.0 45 46 Unless required by applicable law or agreed to in writing, software 47 distributed under the License is distributed on an "AS IS" BASIS, 48 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 49 See the License for the specific language governing permissions and 50 limitations under the License. 51 52[AutoFactory]: https://github.com/google/auto/tree/master/factory 53[AutoService]: https://github.com/google/auto/tree/master/service 54[AutoValue]: https://github.com/google/auto/tree/master/value 55[Common]: https://github.com/google/auto/tree/master/common 56 57[java]: https://en.wikipedia.org/wiki/Java_(programming_language) 58[value-type]: http://en.wikipedia.org/wiki/Value_object 59[`ServiceLoader`]: http://docs.oracle.com/javase/7/docs/api/java/util/ServiceLoader.html 60