Browse Source

Typo fix: expiracy => expiration

svn changeset:277/svn branch:toolkit
tags/6.7.0.beta1
Jani Laakso 17 years ago
parent
commit
40009160ee

+ 1
- 1
src/com/itmill/toolkit/terminal/ApplicationResource.java View File

/** Get virtual filename for the resource */ /** Get virtual filename for the resource */
public String getFilename(); 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 * <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 * client. The caching may be made in adapter or at the client if the

+ 1
- 1
src/com/itmill/toolkit/terminal/ClassResource.java View File

return cacheTime; 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 * <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 * client. The caching may be made in adapter or at the client if the

+ 2
- 2
src/com/itmill/toolkit/terminal/DownloadStream.java View File

return null; 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. * 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 * The caching may be made in adapter or at the client if the client supports
* caching. Default is DEFAULT_CACHETIME. * caching. Default is DEFAULT_CACHETIME.
return cacheTime; 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. * 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 * 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. * caching. Zero or negavive value disbales the caching of this stream.

+ 2
- 2
src/com/itmill/toolkit/terminal/FileResource.java View File

return FileTypeResolver.getMIMEType(sourceFile); 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. * 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 * The caching may be made in adapter or at the client if the client supports
* caching. Default is DownloadStream.DEFAULT_CACHETIME. * caching. Default is DownloadStream.DEFAULT_CACHETIME.
return cacheTime; 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. * 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 * 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. * caching. Zero or negavive value disbales the caching of this stream.

+ 1
- 1
src/com/itmill/toolkit/terminal/StreamResource.java View File

return cacheTime; 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 * <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 * client. The caching may be made in adapter or at the client if the

Loading…
Cancel
Save