mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
21 lines
761 B
Java
Generated
21 lines
761 B
Java
Generated
// Generated automatically from android.view.KeyboardShortcutInfo for testing purposes
|
|
|
|
package android.view;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
public class KeyboardShortcutInfo implements Parcelable
|
|
{
|
|
protected KeyboardShortcutInfo() {}
|
|
public CharSequence getLabel(){ return null; }
|
|
public KeyboardShortcutInfo(CharSequence p0, char p1, int p2){}
|
|
public KeyboardShortcutInfo(CharSequence p0, int p1, int p2){}
|
|
public char getBaseCharacter(){ return '0'; }
|
|
public int describeContents(){ return 0; }
|
|
public int getKeycode(){ return 0; }
|
|
public int getModifiers(){ return 0; }
|
|
public static Parcelable.Creator<KeyboardShortcutInfo> CREATOR = null;
|
|
public void writeToParcel(Parcel p0, int p1){}
|
|
}
|