aboutsummaryrefslogtreecommitdiff
path: root/library/src/main/java/com/bumptech/glide/request/target/SizeReadyCallback.java
diff options
context:
space:
mode:
authorSam Judd <judds@google.com>2014-10-23 18:57:03 -0700
committerSam Judd <judds@google.com>2014-10-23 18:57:03 -0700
commit64d97bb3532525879dd90f3b246ac6060f466684 (patch)
tree7baaf04e2e2c93cbe4ac3ccd2a4b65c02a34ebc7 /library/src/main/java/com/bumptech/glide/request/target/SizeReadyCallback.java
parent32f7a826624747bae652e4d46a52739047ed9bd0 (diff)
downloadglide-64d97bb3532525879dd90f3b246ac6060f466684.tar.gz
Document width/height values.
Fixes #145.
Diffstat (limited to 'library/src/main/java/com/bumptech/glide/request/target/SizeReadyCallback.java')
-rw-r--r--library/src/main/java/com/bumptech/glide/request/target/SizeReadyCallback.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/src/main/java/com/bumptech/glide/request/target/SizeReadyCallback.java b/library/src/main/java/com/bumptech/glide/request/target/SizeReadyCallback.java
index eb382cd6..22b41180 100644
--- a/library/src/main/java/com/bumptech/glide/request/target/SizeReadyCallback.java
+++ b/library/src/main/java/com/bumptech/glide/request/target/SizeReadyCallback.java
@@ -8,8 +8,8 @@ public interface SizeReadyCallback {
/**
* A callback called on the main thread.
*
- * @param width The width of the target.
- * @param height The height of the target.
+ * @param width The width in pixels of the target.
+ * @param height The height in pixels of the target.
*/
void onSizeReady(int width, int height);
}