diff options
| author | 2017-10-19 16:18:44 +0000 | |
|---|---|---|
| committer | 2017-10-19 16:18:44 +0000 | |
| commit | 4719440f3f5157dd07e3497e4b834df7aa7d75e8 (patch) | |
| tree | 8d4cf59d23b1106ff4fa726337a33ecb9549e823 | |
| parent | 07efe116b1055ebead525cc365f22114913a4e9a (diff) | |
| parent | cd06caf10e6a41fd4fb8739c0a03102f0792bd77 (diff) | |
Merge "Move most android.util.Mutable* classes to framework."
am: cd06caf10e
Change-Id: I25fd01bd4bc8c582e6cb79a03de47847b46bcb83
| -rw-r--r-- | core/java/android/util/MutableBoolean.java | 27 | ||||
| -rw-r--r-- | core/java/android/util/MutableByte.java | 27 | ||||
| -rw-r--r-- | core/java/android/util/MutableChar.java | 27 | ||||
| -rw-r--r-- | core/java/android/util/MutableDouble.java | 27 | ||||
| -rw-r--r-- | core/java/android/util/MutableFloat.java | 27 | ||||
| -rw-r--r-- | core/java/android/util/MutableShort.java | 27 |
6 files changed, 162 insertions, 0 deletions
diff --git a/core/java/android/util/MutableBoolean.java b/core/java/android/util/MutableBoolean.java new file mode 100644 index 000000000000..ed837ab6afd3 --- /dev/null +++ b/core/java/android/util/MutableBoolean.java @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2011 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package android.util; + +/** + */ +public final class MutableBoolean { + public boolean value; + + public MutableBoolean(boolean value) { + this.value = value; + } +} diff --git a/core/java/android/util/MutableByte.java b/core/java/android/util/MutableByte.java new file mode 100644 index 000000000000..cc6b00a8046f --- /dev/null +++ b/core/java/android/util/MutableByte.java @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2011 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package android.util; + +/** + */ +public final class MutableByte { + public byte value; + + public MutableByte(byte value) { + this.value = value; + } +} diff --git a/core/java/android/util/MutableChar.java b/core/java/android/util/MutableChar.java new file mode 100644 index 000000000000..9a2e2bce5915 --- /dev/null +++ b/core/java/android/util/MutableChar.java @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2011 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package android.util; + +/** + */ +public final class MutableChar { + public char value; + + public MutableChar(char value) { + this.value = value; + } +} diff --git a/core/java/android/util/MutableDouble.java b/core/java/android/util/MutableDouble.java new file mode 100644 index 000000000000..bd7329a380ee --- /dev/null +++ b/core/java/android/util/MutableDouble.java @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2011 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package android.util; + +/** + */ +public final class MutableDouble { + public double value; + + public MutableDouble(double value) { + this.value = value; + } +} diff --git a/core/java/android/util/MutableFloat.java b/core/java/android/util/MutableFloat.java new file mode 100644 index 000000000000..e6f2d7dc7b30 --- /dev/null +++ b/core/java/android/util/MutableFloat.java @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2011 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package android.util; + +/** + */ +public final class MutableFloat { + public float value; + + public MutableFloat(float value) { + this.value = value; + } +} diff --git a/core/java/android/util/MutableShort.java b/core/java/android/util/MutableShort.java new file mode 100644 index 000000000000..48fb232b5287 --- /dev/null +++ b/core/java/android/util/MutableShort.java @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2011 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package android.util; + +/** + */ +public final class MutableShort { + public short value; + + public MutableShort(short value) { + this.value = value; + } +} |