mirror of
https://github.com/github/codeql.git
synced 2025-12-19 10:23:15 +01:00
27 lines
988 B
Java
Generated
27 lines
988 B
Java
Generated
// Generated automatically from android.content.pm.SharedLibraryInfo for testing purposes
|
|
|
|
package android.content.pm;
|
|
|
|
import android.content.pm.VersionedPackage;
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import java.util.List;
|
|
|
|
public class SharedLibraryInfo implements Parcelable
|
|
{
|
|
public List<VersionedPackage> getDependentPackages(){ return null; }
|
|
public String getName(){ return null; }
|
|
public String toString(){ return null; }
|
|
public VersionedPackage getDeclaringPackage(){ return null; }
|
|
public int describeContents(){ return 0; }
|
|
public int getType(){ return 0; }
|
|
public int getVersion(){ return 0; }
|
|
public long getLongVersion(){ return 0; }
|
|
public static Parcelable.Creator<SharedLibraryInfo> CREATOR = null;
|
|
public static int TYPE_BUILTIN = 0;
|
|
public static int TYPE_DYNAMIC = 0;
|
|
public static int TYPE_STATIC = 0;
|
|
public static int VERSION_UNDEFINED = 0;
|
|
public void writeToParcel(Parcel p0, int p1){}
|
|
}
|