Lines Matching refs:interface
152 structure in the signature file. For example, in v1, an interface is called an
153 "abstract interface"; an interface extending another interface is said to
161 public abstract interface List<E> implements java.util.Collection { ... }
171 public interface List<E> extends java.util.Collection<E> { ... }
173 public @interface SuppressLint { ... }
181 in the above it was missing from super interface Collection:
185 public abstract interface List<E> implements java.util.Collection { ... }
193 public interface List<E> extends java.util.Collection<E> { ... }
231 (also applying the @interface terminology change described above) :
235 public static @interface ViewDebug.ExportedProperty {
489 a method from an interface, the interface method is implicitly abstract, so the