Searched refs:propertyType (Results 1 – 2 of 2) sorted by relevance
119 public <T extends ValueAnimator> T apply(@PropType int propertyType, T animator) { in apply() argument120 animator.setStartDelay(getStartDelay(propertyType)); in apply()121 animator.setDuration(getDuration(propertyType)); in apply()122 animator.setInterpolator(getInterpolator(propertyType)); in apply()129 public AnimationProps setStartDelay(@PropType int propertyType, int startDelay) { in setStartDelay() argument133 mPropStartDelay.append(propertyType, startDelay); in setStartDelay()140 public long getStartDelay(@PropType int propertyType) { in getStartDelay() argument142 long startDelay = mPropStartDelay.get(propertyType, -1); in getStartDelay()154 public AnimationProps setDuration(@PropType int propertyType, int duration) { in setDuration() argument158 mPropDuration.append(propertyType, duration); in setDuration()[all …]
788 Class<?> propertyType = mConverter == null ? mValueType : mConverter.getTargetType(); in setupSetter() local789 mSetter = setupSetterOrGetter(targetClass, sSetterPropertyMap, "set", propertyType); in setupSetter()