mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-27 23:36:47 +00:00
87 lines
3.2 KiB
Java
87 lines
3.2 KiB
Java
/*
|
|
* Copyright (C) 2017 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 androidx.dynamicanimation.animation;
|
|
|
|
import android.util.FloatProperty;
|
|
|
|
import androidx.annotation.RequiresApi;
|
|
|
|
/**
|
|
* <p>FloatPropertyCompat is an abstraction that can be used to represent a mutable float value that
|
|
* is held in a host object. To access this float value, {@link #setValue(Object, float)} and getter
|
|
* {@link #getValue(Object)} need to be implemented. Both the setter and the getter take the
|
|
* primitive <code>float</code> type and avoids autoboxing and other overhead associated with the
|
|
* <code>Float</code> class.
|
|
*
|
|
* <p>For API 24 and later, {@link FloatProperty} instances can be converted to
|
|
* {@link FloatPropertyCompat} through
|
|
* {@link FloatPropertyCompat#createFloatPropertyCompat(FloatProperty)}.
|
|
*
|
|
* @param <T> the class on which the Property is declared
|
|
*/
|
|
public abstract class FloatPropertyCompat<T> {
|
|
final String mPropertyName;
|
|
|
|
/**
|
|
* A constructor that takes an identifying name.
|
|
*/
|
|
public FloatPropertyCompat(String name) {
|
|
mPropertyName = name;
|
|
}
|
|
|
|
/**
|
|
* Create a {@link FloatPropertyCompat} wrapper for a {@link FloatProperty} object. The new
|
|
* {@link FloatPropertyCompat} instance will access and modify the property value of
|
|
* {@link FloatProperty} through the {@link FloatProperty} instance's setter and getter.
|
|
*
|
|
* @param property FloatProperty instance to be wrapped
|
|
* @param <T> the class on which the Property is declared
|
|
* @return a new {@link FloatPropertyCompat} wrapper for the given {@link FloatProperty} object
|
|
*/
|
|
@RequiresApi(24)
|
|
public static <T> FloatPropertyCompat<T> createFloatPropertyCompat(
|
|
final FloatProperty<T> property) {
|
|
return new FloatPropertyCompat<T>(property.getName()) {
|
|
@Override
|
|
public float getValue(T object) {
|
|
return property.get(object);
|
|
}
|
|
|
|
@Override
|
|
public void setValue(T object, float value) {
|
|
property.setValue(object, value);
|
|
}
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Returns the current value that this property represents on the given <code>object</code>.
|
|
*
|
|
* @param object object which this property represents
|
|
* @return the current property value of the given object
|
|
*/
|
|
public abstract float getValue(T object);
|
|
|
|
/**
|
|
* Sets the value on <code>object</code> which this property represents.
|
|
*
|
|
* @param object object which this property represents
|
|
* @param value new value of the property
|
|
*/
|
|
public abstract void setValue(T object, float value);
|
|
}
|