android.os.Parcel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Stub classes to run Android projects in Desktop environment
package android.os;
import java.util.HashMap;
public class Parcel {
/**
* Not implemented
*/
@Deprecated
public void writeString(String s) {
}
/**
* Not implemented
*/
@Deprecated
public void writeInt(int i) {
}
/**
* Not implemented
*/
@Deprecated
public int readInt() {
return 0;
}
/**
* Not implemented
*/
@Deprecated
public String readString() {
return "";
}
public HashMap readHashMap(Object o) {
return null;
}
public void writeMap(HashMap mValues) {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy