• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

android-annotation-stubs/23-Nov-2023-205124

common/23-Nov-2023-8,0195,632

factory/23-Nov-2023-6,3113,786

service/23-Nov-2023-1,148672

util/23-Nov-2023-7051

value/23-Nov-2023-33,73424,703

.gitignoreD23-Nov-2023189 2721

.travis.ymlD23-Nov-2023995 2921

Android.bpD23-Nov-2023409 1816

CONTRIBUTING.mdD23-Nov-20231.6 KiB3526

LICENSED23-Nov-202311.1 KiB203169

METADATAD23-Nov-2023349 1816

MODULE_LICENSE_APACHE2D23-Nov-20230

README.mdD23-Nov-20232.5 KiB6037

build-pom.xmlD23-Nov-2023812 2725

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