diff options
| author | Romain Guy <> | 2009-03-31 17:53:57 -0700 |
|---|---|---|
| committer | The Android Open Source Project <initial-contribution@android.com> | 2009-03-31 17:53:57 -0700 |
| commit | d1b3dd058d2015cd1f2a3ef7fb3798f0d7923fe3 (patch) | |
| tree | de11a78687ff10d75abd8806167d3d92f4a1c575 /core/java/android/util/Poolable.java | |
| parent | 2c62f84add1fdddd51b38d0cc373be6b8b75a28b (diff) | |
AI 143894: am: CL 143890 Fixes #1749387. Improve the pooling of the VelocityTracker class. This introduces a new, hidden, API for pooling objects easily.
Original author: romainguy
Merged from: //branches/donutburger/...
Automated import of CL 143894
Diffstat (limited to 'core/java/android/util/Poolable.java')
| -rw-r--r-- | core/java/android/util/Poolable.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/core/java/android/util/Poolable.java b/core/java/android/util/Poolable.java new file mode 100644 index 000000000000..fd9bd9b7f136 --- /dev/null +++ b/core/java/android/util/Poolable.java @@ -0,0 +1,25 @@ +/* + * Copyright (C) 2009 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 interface Poolable<T> { + void setNextPoolable(T element); + T getNextPoolable(); +} |
