Fix java docs

This commit is contained in:
serso 2016-02-06 22:49:45 +01:00
parent c41f7d15cb
commit 9e45f62003

View File

@ -92,7 +92,6 @@ public class AutoResizeTextView extends TextView {
/** /**
* Register listener to receive resize notifications * Register listener to receive resize notifications
* @param listener
*/ */
public void setOnResizeListener(OnTextResizeListener listener) { public void setOnResizeListener(OnTextResizeListener listener) {
mTextResizeListener = listener; mTextResizeListener = listener;
@ -128,7 +127,6 @@ public class AutoResizeTextView extends TextView {
/** /**
* Return upper text size limit * Return upper text size limit
* @return
*/ */
public float getMaxTextSize() { public float getMaxTextSize() {
return mMaxTextSize; return mMaxTextSize;
@ -136,7 +134,6 @@ public class AutoResizeTextView extends TextView {
/** /**
* Set the upper text size limit and invalidate the view * Set the upper text size limit and invalidate the view
* @param maxTextSize
*/ */
public void setMaxTextSize(float maxTextSize) { public void setMaxTextSize(float maxTextSize) {
mMaxTextSize = maxTextSize; mMaxTextSize = maxTextSize;
@ -146,7 +143,6 @@ public class AutoResizeTextView extends TextView {
/** /**
* Return lower text size limit * Return lower text size limit
* @return
*/ */
public float getMinTextSize() { public float getMinTextSize() {
return mMinTextSize; return mMinTextSize;
@ -154,7 +150,6 @@ public class AutoResizeTextView extends TextView {
/** /**
* Set the lower text size limit and invalidate the view * Set the lower text size limit and invalidate the view
* @param minTextSize
*/ */
public void setMinTextSize(float minTextSize) { public void setMinTextSize(float minTextSize) {
mMinTextSize = minTextSize; mMinTextSize = minTextSize;
@ -164,7 +159,6 @@ public class AutoResizeTextView extends TextView {
/** /**
* Return flag to add ellipsis to text that overflows at the smallest text size * Return flag to add ellipsis to text that overflows at the smallest text size
* @return
*/ */
public boolean getAddEllipsis() { public boolean getAddEllipsis() {
return mAddEllipsis; return mAddEllipsis;
@ -172,7 +166,6 @@ public class AutoResizeTextView extends TextView {
/** /**
* Set flag to add ellipsis to text that overflows at the smallest text size * Set flag to add ellipsis to text that overflows at the smallest text size
* @param addEllipsis
*/ */
public void setAddEllipsis(boolean addEllipsis) { public void setAddEllipsis(boolean addEllipsis) {
mAddEllipsis = addEllipsis; mAddEllipsis = addEllipsis;
@ -213,8 +206,6 @@ public class AutoResizeTextView extends TextView {
/** /**
* Resize the text size with specified width and height * Resize the text size with specified width and height
* @param width
* @param height
*/ */
public void resizeText(int width, int height) { public void resizeText(int width, int height) {
CharSequence text = getText(); CharSequence text = getText();