com.android.sdklib.repositoryv2.meta
Interface DetailsTypes.SysImgDetailsType

All Superinterfaces:
DetailsTypes.ApiDetailsType
All Known Implementing Classes:
SysImgDetailsType
Enclosing class:
DetailsTypes

public static interface DetailsTypes.SysImgDetailsType
extends DetailsTypes.ApiDetailsType

Details type for system images packages. Includes information on the abi (architecture), tag (device type), and vendor.


Method Summary
 java.lang.String getAbi()
          Gets the abi type (x86, armeabi-v7a, etc.) for this package.
 IdDisplay getTag()
          Sets the tag for this package.
 IdDisplay getVendor()
          Gets the vendor of this package.
 boolean isValidAbi(java.lang.String value)
          Checks whether value is a valid abi type.
 void setAbi(java.lang.String abi)
          Sets the abi type (x86, armeabi-v7a, etc.) for this package.
 void setTag(IdDisplay tag)
          Sets the tag for this package.
 void setVendor(IdDisplay vendor)
          Sets the vendor of this package.
 
Methods inherited from interface com.android.sdklib.repositoryv2.meta.DetailsTypes.ApiDetailsType
getApiLevel, getCodename, setApiLevel, setCodename
 

Method Detail

setAbi

void setAbi(@NonNull
            java.lang.String abi)
Sets the abi type (x86, armeabi-v7a, etc.) for this package.


getAbi

@NonNull
java.lang.String getAbi()
Gets the abi type (x86, armeabi-v7a, etc.) for this package.


isValidAbi

boolean isValidAbi(@Nullable
                   java.lang.String value)
Checks whether value is a valid abi type.


setTag

void setTag(@NonNull
            IdDisplay tag)
Sets the tag for this package. Used to match addon packages with corresponding system images.


getTag

@NonNull
IdDisplay getTag()
Sets the tag for this package. Used to match addon packages with corresponding system images.


setVendor

void setVendor(@Nullable
               IdDisplay vendor)
Sets the vendor of this package.


getVendor

@Nullable
IdDisplay getVendor()
Gets the vendor of this package.