package android.util;
public class StateSet
{
StateSet() { throw new RuntimeException("Stub!"); }
public static boolean isWildCard(int[] stateSetOrSpec) { throw new RuntimeException("Stub!"); }
public static boolean stateSetMatches(int[] stateSpec, int[] stateSet) { throw new RuntimeException("Stub!"); }
public static boolean stateSetMatches(int[] stateSpec, int state) { throw new RuntimeException("Stub!"); }
public static int[] trimStateSet(int[] states, int newSize) { throw new RuntimeException("Stub!"); }
public static java.lang.String dump(int[] states) { throw new RuntimeException("Stub!"); }
public static final int[] NOTHING = null;
public static final int[] WILD_CARD = null;
}
|