Package net.bytebuddy.build
Interface AndroidDescriptor
-
- All Known Implementing Classes:
AndroidDescriptor.Trivial
public interface AndroidDescriptorProvides Android context information toPlugininstances that include it as their constructor parameter.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAndroidDescriptor.TrivialA trivial implementation of anAndroidDescriptorthat returns a fixed value.static classAndroidDescriptor.TypeScopeDescribes the origin of a type within an Android project.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AndroidDescriptor.TypeScopegetTypeScope(TypeDescription typeDescription)Provides the scope of the passedTypeDescriptioninstance.
-
-
-
Method Detail
-
getTypeScope
AndroidDescriptor.TypeScope getTypeScope(TypeDescription typeDescription)
Provides the scope of the passedTypeDescriptioninstance.- Parameters:
typeDescription- The type to get the scope for.- Returns:
- a
AndroidDescriptor.TypeScopedescribing the type's origin.
-
-