OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:documentedType
(Results
1 - 3
of
3
) sorted by null
/external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/
DocumentedPackage.java
8
private final Map<String,
DocumentedType
> documentedTypes = new TreeMap<>();
14
public Collection<
DocumentedType
> getDocumentedTypes() {
18
public
DocumentedType
getDocumentedType(String name) {
19
DocumentedType
documentedType
= documentedTypes.get(name);
20
if (
documentedType
== null) {
21
documentedType
= new
DocumentedType
(name);
22
documentedTypes.put(name,
documentedType
);
24
return
documentedType
;
[
all
...]
RobolectricModel.java
132
DocumentedType
documentedType
= getDocumentedType(type);
133
documentedType
.setDocumentation(documentation);
134
documentedType
.imports = imports;
138
DocumentedType
documentedType
= getDocumentedType(shadowClass);
139
documentedType
.methods.put(documentedMethod.getName(), documentedMethod);
156
private
DocumentedType
getDocumentedType(TypeElement type) {
/external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/generator/
JavadocJsonGenerator.java
15
import org.robolectric.annotation.processing.
DocumentedType
;
51
for (
DocumentedType
documentedType
: documentedPackage.getDocumentedTypes()) {
52
String shadowedType = shadowedTypes.get(
documentedType
.getName());
53
writeJson(
documentedType
, new File(jsonDocsDir, shadowedType + ".json"));
Completed in 263 milliseconds