Files
codeql/java/ql/test/stubs/google-android-9.0.0/android/content/pm/SharedLibraryInfo.java
Chris Smowton 1dffbcd0bd Fix tests disrupted by re-modelling and stubbing Android 9:
* Account for changed dataflow graph shape using external flow
* Account for BaseBundle only existing as of Android 5
* Properly implement Parcelable, which we previously got away with due to a partial stub
* Restore an Android 11 function that had been added to the Android 9 Context class (I won't get into enforcing the difference in this PR)
2021-10-12 12:35:05 +01:00

28 lines
1.0 KiB
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
{
protected SharedLibraryInfo() {}
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){}
}