OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IAnnotationElement
(Results
1 - 10
of
10
) sorted by null
/cts/tools/signature-tools/src/signature/compare/model/
IAnnotationElementDelta.java
19
import signature.model.
IAnnotationElement
;
23
* {@link
IAnnotationElement
} instances.
25
public interface IAnnotationElementDelta extends IDelta<
IAnnotationElement
> {
/cts/tools/signature-tools/src/signature/model/
IAnnotationElement.java
20
* {@code
IAnnotationElement
} models an annotation element which consist of a
23
public interface
IAnnotationElement
{
IAnnotation.java
41
Set<
IAnnotationElement
> getElements();
/cts/tools/signature-tools/src/signature/compare/model/impl/
SigAnnotationElementDelta.java
21
import signature.model.
IAnnotationElement
;
23
public class SigAnnotationElementDelta extends SigDelta<
IAnnotationElement
>
28
public SigAnnotationElementDelta(
IAnnotationElement
from,
29
IAnnotationElement
to) {
/cts/tools/signature-tools/src/signature/model/impl/
SigAnnotation.java
20
import signature.model.
IAnnotationElement
;
30
private Set<
IAnnotationElement
> elements;
45
public Set<
IAnnotationElement
> getElements() {
49
public void setElements(Set<
IAnnotationElement
> elements) {
60
for (
IAnnotationElement
element : getElements()) {
SigAnnotationElement.java
21
import signature.model.
IAnnotationElement
;
25
public class SigAnnotationElement implements
IAnnotationElement
, Serializable {
/cts/tools/signature-tools/src/signature/model/util/
ModelUtil.java
21
import signature.model.
IAnnotationElement
;
64
public static
IAnnotationElement
getAnnotationElement(
66
for (
IAnnotationElement
element : annotation.getElements()) {
/cts/tools/signature-tools/src/signature/compare/
ApiComparator.java
66
import signature.model.
IAnnotationElement
;
580
Set<
IAnnotationElement
> fromAnnotationElement =
582
Set<
IAnnotationElement
> toAnnotationElement =
605
private Set<
IAnnotationElement
> getNormalizedAnnotationElements(
607
Set<
IAnnotationElement
> elements = new HashSet<
IAnnotationElement
>(
611
for (
IAnnotationElement
annotationElement : elements) {
629
Set<
IAnnotationElement
> from, Set<
IAnnotationElement
> to) {
631
new SigComparator<
IAnnotationElement
, IAnnotationElementDelta>()
[
all
...]
/cts/tools/signature-tools/src/signature/converter/dex/
DexToSigConverter.java
58
import signature.model.
IAnnotationElement
;
[
all
...]
/cts/tools/signature-tools/src/signature/converter/doclet/
DocletToSigConverter.java
31
import signature.model.
IAnnotationElement
;
574
Set<
IAnnotationElement
> elements = new HashSet<
IAnnotationElement
>();
Completed in 141 milliseconds