summaryrefslogtreecommitdiffstats
path: root/luni/src/main/java/android/util/MutableInt.java
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-04-23 17:53:37 -0700
committerElliott Hughes <enh@google.com>2014-04-24 16:47:32 -0700
commit5d930cadc8f62aee5f18e7921296fe66a54f18ab (patch)
treee4d8b5da53522515d28c601520c2cb6ef6e8b0cf /luni/src/main/java/android/util/MutableInt.java
parent4d402932d370f12f43045518dac4eeef542648c4 (diff)
downloadlibcore-5d930cadc8f62aee5f18e7921296fe66a54f18ab.zip
libcore-5d930cadc8f62aee5f18e7921296fe66a54f18ab.tar.gz
libcore-5d930cadc8f62aee5f18e7921296fe66a54f18ab.tar.bz2
Groundwork towards making the Libcore.os functionality public.
Change-Id: Ie700aa16d91fba53fc5eb2555829cb74d84b12ad
Diffstat (limited to 'luni/src/main/java/android/util/MutableInt.java')
-rw-r--r--luni/src/main/java/android/util/MutableInt.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/luni/src/main/java/android/util/MutableInt.java b/luni/src/main/java/android/util/MutableInt.java
new file mode 100644
index 0000000..8220c44
--- /dev/null
+++ b/luni/src/main/java/android/util/MutableInt.java
@@ -0,0 +1,28 @@
+/*
+ * 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;
+
+/**
+ * @hide
+ */
+public final class MutableInt {
+ public int value;
+
+ public MutableInt(int value) {
+ this.value = value;
+ }
+}