void setAnimatedValue(Object obj)
 {
     if (mIntProperty != null)
     {
         mIntProperty.setValue(obj, mIntAnimatedValue);
     } else
     {
         if (mProperty != null)
         {
             mProperty.set(obj, Integer.valueOf(mIntAnimatedValue));
             return;
         }
         if (mSetter != null)
         {
             try
             {
                 mTmpValueArray[0] = Integer.valueOf(mIntAnimatedValue);
                 mSetter.invoke(obj, mTmpValueArray);
                 return;
             }
             // Misplaced declaration of an exception variable
             catch (Object obj)
             {
                 Log.e("PropertyValuesHolder", ((InvocationTargetException) (obj)).toString());
                 return;
             }
             // Misplaced declaration of an exception variable
             catch (Object obj)
             {
                 Log.e("PropertyValuesHolder", ((IllegalAccessException) (obj)).toString());
             }
             return;
         }
     }
 }