/**\r
* Constructor\r
* \r
- * @param anchor\r
- * {@link View} on where the popup window should be displayed\r
+ * @param anchor {@link View} on where the popup window should be displayed\r
*/\r
public QuickAction(View anchor) {\r
super(anchor);\r
/**\r
* Set animation style\r
* \r
- * @param animStyle\r
- * animation style, default is set to ANIM_AUTO\r
+ * @param animStyle animation style, default is set to ANIM_AUTO\r
*/\r
public void setAnimStyle(int animStyle) {\r
this.animStyle = animStyle;\r
/**\r
* Add action item\r
* \r
- * @param action\r
- * {@link ActionItem} object\r
+ * @param action {@link ActionItem} object\r
*/\r
public void addActionItem(ActionItem action) {\r
actionList.add(action);\r
/**\r
* Set animation style\r
* \r
- * @param screenWidth\r
- * screen width\r
- * @param requestedX\r
- * distance from left edge\r
- * @param onTop\r
- * flag to indicate where the popup should be displayed. Set TRUE\r
- * if displayed on top of anchor view and vice versa\r
+ * @param screenWidth screen width\r
+ * @param requestedX distance from left edge\r
+ * @param onTop flag to indicate where the popup should be displayed. Set\r
+ * TRUE if displayed on top of anchor view and vice versa\r
*/\r
private void setAnimationStyle(int screenWidth, int requestedX,\r
boolean onTop) {\r
/**\r
* Get action item {@link View}\r
* \r
- * @param title\r
- * action item title\r
- * @param icon\r
- * {@link Drawable} action item icon\r
- * @param listener\r
- * {@link View.OnClickListener} action item listener\r
+ * @param title action item title\r
+ * @param icon {@link Drawable} action item icon\r
+ * @param listener {@link View.OnClickListener} action item listener\r
* @return action item {@link View}\r
*/\r
private View getActionItem(String title, Drawable icon,\r
/**\r
* Show arrow\r
* \r
- * @param whichArrow\r
- * arrow type resource id\r
- * @param requestedX\r
- * distance from left screen\r
+ * @param whichArrow arrow type resource id\r
+ * @param requestedX distance from left screen\r
*/\r
private void showArrow(int whichArrow, int requestedX) {\r
final View showArrow = (whichArrow == R.id.arrow_up) ? mArrowUp\r