aboutsummaryrefslogtreecommitdiffstats
path: root/src/com
diff options
context:
space:
mode:
authorJani Laakso <jani.laakso@itmill.com>2007-01-16 14:22:12 +0000
committerJani Laakso <jani.laakso@itmill.com>2007-01-16 14:22:12 +0000
commit40009160ee6029dbcd9cf684e2b0b0d441a9e54f (patch)
tree6c143af08db5a33b08c1badb0dedb7a5f151217e /src/com
parent798fbd54c035d03c2e690f71c111d83b9fda8242 (diff)
downloadvaadin-framework-40009160ee6029dbcd9cf684e2b0b0d441a9e54f.tar.gz
vaadin-framework-40009160ee6029dbcd9cf684e2b0b0d441a9e54f.zip
Typo fix: expiracy => expiration
svn changeset:277/svn branch:toolkit
Diffstat (limited to 'src/com')
-rw-r--r--src/com/itmill/toolkit/terminal/ApplicationResource.java2
-rw-r--r--src/com/itmill/toolkit/terminal/ClassResource.java2
-rw-r--r--src/com/itmill/toolkit/terminal/DownloadStream.java4
-rw-r--r--src/com/itmill/toolkit/terminal/FileResource.java4
-rw-r--r--src/com/itmill/toolkit/terminal/StreamResource.java2
5 files changed, 7 insertions, 7 deletions
diff --git a/src/com/itmill/toolkit/terminal/ApplicationResource.java b/src/com/itmill/toolkit/terminal/ApplicationResource.java
index 16f818b3db..2307b1e58f 100644
--- a/src/com/itmill/toolkit/terminal/ApplicationResource.java
+++ b/src/com/itmill/toolkit/terminal/ApplicationResource.java
@@ -54,7 +54,7 @@ public interface ApplicationResource extends Resource {
/** Get virtual filename for the resource */
public String getFilename();
- /** Get lenght of cache expiracy time.
+ /** Get lenght of cache expiration time.
*
* <p>This gives the adapter the possibility cache streams sent to the
* client. The caching may be made in adapter or at the client if the
diff --git a/src/com/itmill/toolkit/terminal/ClassResource.java b/src/com/itmill/toolkit/terminal/ClassResource.java
index ae20898599..dd71c36739 100644
--- a/src/com/itmill/toolkit/terminal/ClassResource.java
+++ b/src/com/itmill/toolkit/terminal/ClassResource.java
@@ -134,7 +134,7 @@ public class ClassResource implements ApplicationResource {
return cacheTime;
}
- /** Set lenght of cache expiracy time.
+ /** Set lenght of cache expiration time.
*
* <p>This gives the adapter the possibility cache streams sent to the
* client. The caching may be made in adapter or at the client if the
diff --git a/src/com/itmill/toolkit/terminal/DownloadStream.java b/src/com/itmill/toolkit/terminal/DownloadStream.java
index fc0f5569b0..74473ff4db 100644
--- a/src/com/itmill/toolkit/terminal/DownloadStream.java
+++ b/src/com/itmill/toolkit/terminal/DownloadStream.java
@@ -145,7 +145,7 @@ public class DownloadStream {
return null;
}
- /** Get lenght of cache expiracy time.
+ /** Get lenght of cache expiration time.
* This gives the adapter the possibility cache streams sent to the client.
* The caching may be made in adapter or at the client if the client supports
* caching. Default is DEFAULT_CACHETIME.
@@ -155,7 +155,7 @@ public class DownloadStream {
return cacheTime;
}
- /** Set lenght of cache expiracy time.
+ /** Set lenght of cache expiration time.
* This gives the adapter the possibility cache streams sent to the client.
* The caching may be made in adapter or at the client if the client supports
* caching. Zero or negavive value disbales the caching of this stream.
diff --git a/src/com/itmill/toolkit/terminal/FileResource.java b/src/com/itmill/toolkit/terminal/FileResource.java
index e67f55a18b..dcc06cbed5 100644
--- a/src/com/itmill/toolkit/terminal/FileResource.java
+++ b/src/com/itmill/toolkit/terminal/FileResource.java
@@ -116,7 +116,7 @@ public class FileResource implements ApplicationResource {
return FileTypeResolver.getMIMEType(sourceFile);
}
- /** Get lenght of cache expiracy time.
+ /** Get lenght of cache expiration time.
* This gives the adapter the possibility cache streams sent to the client.
* The caching may be made in adapter or at the client if the client supports
* caching. Default is DownloadStream.DEFAULT_CACHETIME.
@@ -126,7 +126,7 @@ public class FileResource implements ApplicationResource {
return cacheTime;
}
- /** Set lenght of cache expiracy time.
+ /** Set lenght of cache expiration time.
* This gives the adapter the possibility cache streams sent to the client.
* The caching may be made in adapter or at the client if the client supports
* caching. Zero or negavive value disbales the caching of this stream.
diff --git a/src/com/itmill/toolkit/terminal/StreamResource.java b/src/com/itmill/toolkit/terminal/StreamResource.java
index 9d3533de71..8d2a38e004 100644
--- a/src/com/itmill/toolkit/terminal/StreamResource.java
+++ b/src/com/itmill/toolkit/terminal/StreamResource.java
@@ -168,7 +168,7 @@ public class StreamResource implements ApplicationResource {
return cacheTime;
}
- /** Set lenght of cache expiracy time.
+ /** Set lenght of cache expiration time.
*
* <p>This gives the adapter the possibility cache streams sent to the
* client. The caching may be made in adapter or at the client if the