Author: andrei_exadel
Date: 2008-04-25 06:16:12 -0400 (Fri, 25 Apr 2008)
New Revision: 8156
Modified:
trunk/framework/api/src/main/java/org/richfaces/model/UploadItem.java
Log:
Modified: trunk/framework/api/src/main/java/org/richfaces/model/UploadItem.java
===================================================================
--- trunk/framework/api/src/main/java/org/richfaces/model/UploadItem.java 2008-04-25
10:16:02 UTC (rev 8155)
+++ trunk/framework/api/src/main/java/org/richfaces/model/UploadItem.java 2008-04-25
10:16:12 UTC (rev 8156)
@@ -57,12 +57,12 @@
* In another case getData method should be invoked to get file's bytes.
* @return
*/
- public boolean isFile () {
+ public boolean isTempFile () {
return (null != file);
}
/**
- * This method should called only in case of TRUE value returned by {@link #isFile()}
method.
+ * This method should called only in case of TRUE value returned by {@link
#isTempFile()} method.
* Otherwise null value will be returned by this method.
* @return the file
*/
@@ -71,7 +71,7 @@
}
/**
- * This method should called only in case of FALSE value returned by {@link
#isFile()} method.
+ * This method should called only in case of FALSE value returned by {@link
#isTempFile()} method.
* Otherwise null value will be returned by this method.
* @return the bytes
* @throws Exception