android.util.Property Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.util;
public abstract class Property
{
public Property(java.lang.Class type, java.lang.String name) { throw new RuntimeException("Stub!"); }
public static android.util.Property of(java.lang.Class hostType, java.lang.Class valueType, java.lang.String name) { throw new RuntimeException("Stub!"); }
public boolean isReadOnly() { throw new RuntimeException("Stub!"); }
public void set(T object, V value) { throw new RuntimeException("Stub!"); }
public abstract V get(T object);
public java.lang.String getName() { throw new RuntimeException("Stub!"); }
public java.lang.Class getType() { throw new RuntimeException("Stub!"); }
}