mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
26 lines
914 B
Java
Generated
26 lines
914 B
Java
Generated
// Generated automatically from android.os.PatternMatcher for testing purposes
|
|
|
|
package android.os;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
public class PatternMatcher implements Parcelable
|
|
{
|
|
protected PatternMatcher() {}
|
|
public PatternMatcher(Parcel p0){}
|
|
public PatternMatcher(String p0, int p1){}
|
|
public String toString(){ return null; }
|
|
public boolean match(String p0){ return false; }
|
|
public final String getPath(){ return null; }
|
|
public final int getType(){ return 0; }
|
|
public int describeContents(){ return 0; }
|
|
public static Parcelable.Creator<PatternMatcher> CREATOR = null;
|
|
public static int PATTERN_ADVANCED_GLOB = 0;
|
|
public static int PATTERN_LITERAL = 0;
|
|
public static int PATTERN_PREFIX = 0;
|
|
public static int PATTERN_SIMPLE_GLOB = 0;
|
|
public static int PATTERN_SUFFIX = 0;
|
|
public void writeToParcel(Parcel p0, int p1){}
|
|
}
|