Back to project page transitions-everywhere.
The source code is released under:
Apache License
If you think the Android project transitions-everywhere listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package android.transitions.everywhere.utils; //w w w. j a v a2 s .co m /** * Created by Andrey Kulikov on 24.10.14. */ public class PropertyCompatObject<T, F> { private T mObject; public PropertyCompatObject() { } public PropertyCompatObject(T object) { mObject = object; } public T getObject() { return mObject; } public String getProperty() { return "value"; } public void setValue(F value) { // do nothing } public F getValue() { return null; } }