Merge "Deprecate android.util.Mutable*."
This commit is contained in:
@@ -44374,42 +44374,42 @@ package android.util {
|
||||
method public void previousMonth();
|
||||
}
|
||||
|
||||
public final class MutableBoolean {
|
||||
public final deprecated class MutableBoolean {
|
||||
ctor public MutableBoolean(boolean);
|
||||
field public boolean value;
|
||||
}
|
||||
|
||||
public final class MutableByte {
|
||||
public final deprecated class MutableByte {
|
||||
ctor public MutableByte(byte);
|
||||
field public byte value;
|
||||
}
|
||||
|
||||
public final class MutableChar {
|
||||
public final deprecated class MutableChar {
|
||||
ctor public MutableChar(char);
|
||||
field public char value;
|
||||
}
|
||||
|
||||
public final class MutableDouble {
|
||||
public final deprecated class MutableDouble {
|
||||
ctor public MutableDouble(double);
|
||||
field public double value;
|
||||
}
|
||||
|
||||
public final class MutableFloat {
|
||||
public final deprecated class MutableFloat {
|
||||
ctor public MutableFloat(float);
|
||||
field public float value;
|
||||
}
|
||||
|
||||
public final class MutableInt {
|
||||
public final deprecated class MutableInt {
|
||||
ctor public MutableInt(int);
|
||||
field public int value;
|
||||
}
|
||||
|
||||
public final class MutableLong {
|
||||
public final deprecated class MutableLong {
|
||||
ctor public MutableLong(long);
|
||||
field public long value;
|
||||
}
|
||||
|
||||
public final class MutableShort {
|
||||
public final deprecated class MutableShort {
|
||||
ctor public MutableShort(short);
|
||||
field public short value;
|
||||
}
|
||||
|
||||
@@ -17,7 +17,9 @@
|
||||
package android.util;
|
||||
|
||||
/**
|
||||
* @deprecated This class will be removed from a future version of the Android API.
|
||||
*/
|
||||
@Deprecated
|
||||
public final class MutableBoolean {
|
||||
public boolean value;
|
||||
|
||||
|
||||
@@ -17,7 +17,9 @@
|
||||
package android.util;
|
||||
|
||||
/**
|
||||
* @deprecated This class will be removed from a future version of the Android API.
|
||||
*/
|
||||
@Deprecated
|
||||
public final class MutableByte {
|
||||
public byte value;
|
||||
|
||||
|
||||
@@ -17,7 +17,9 @@
|
||||
package android.util;
|
||||
|
||||
/**
|
||||
* @deprecated This class will be removed from a future version of the Android API.
|
||||
*/
|
||||
@Deprecated
|
||||
public final class MutableChar {
|
||||
public char value;
|
||||
|
||||
|
||||
@@ -17,7 +17,9 @@
|
||||
package android.util;
|
||||
|
||||
/**
|
||||
* @deprecated This class will be removed from a future version of the Android API.
|
||||
*/
|
||||
@Deprecated
|
||||
public final class MutableDouble {
|
||||
public double value;
|
||||
|
||||
|
||||
@@ -17,7 +17,9 @@
|
||||
package android.util;
|
||||
|
||||
/**
|
||||
* @deprecated This class will be removed from a future version of the Android API.
|
||||
*/
|
||||
@Deprecated
|
||||
public final class MutableFloat {
|
||||
public float value;
|
||||
|
||||
|
||||
@@ -17,7 +17,9 @@
|
||||
package android.util;
|
||||
|
||||
/**
|
||||
* @deprecated This class will be removed from a future version of the Android API.
|
||||
*/
|
||||
@Deprecated
|
||||
public final class MutableInt {
|
||||
public int value;
|
||||
|
||||
|
||||
@@ -17,7 +17,9 @@
|
||||
package android.util;
|
||||
|
||||
/**
|
||||
* @deprecated This class will be removed from a future version of the Android API.
|
||||
*/
|
||||
@Deprecated
|
||||
public final class MutableLong {
|
||||
public long value;
|
||||
|
||||
|
||||
@@ -17,7 +17,9 @@
|
||||
package android.util;
|
||||
|
||||
/**
|
||||
* @deprecated This class will be removed from a future version of the Android API.
|
||||
*/
|
||||
@Deprecated
|
||||
public final class MutableShort {
|
||||
public short value;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user