]> source.dussan.org Git - vaadin-framework.git/commitdiff
Constructors documents changed
authorMohamed Atique <mohamed.atique@renaissance-it.com>
Fri, 13 Apr 2007 10:36:33 +0000 (10:36 +0000)
committerMohamed Atique <mohamed.atique@renaissance-it.com>
Fri, 13 Apr 2007 10:36:33 +0000 (10:36 +0000)
svn changeset:1232/svn branch:trunk

src/com/itmill/toolkit/terminal/ClassResource.java
src/com/itmill/toolkit/terminal/ExternalResource.java
src/com/itmill/toolkit/terminal/FileResource.java
src/com/itmill/toolkit/terminal/Paintable.java
src/com/itmill/toolkit/terminal/StreamResource.java
src/com/itmill/toolkit/terminal/URIHandler.java
src/com/itmill/toolkit/terminal/UserError.java

index fece5b75df40dd867f19052b1ff52883713e0c1b..efdfee4ad387fba1cd69a80f79310e71696c6033 100644 (file)
@@ -69,7 +69,7 @@ public class ClassResource implements ApplicationResource {
        private Application application;
 
        /** 
-        * Creates new application resource instance. 
+        * Creates new application resource instance. 
         * The resource id is relative to the location of the application class.
         * 
         * @param resourceName the Unique identifier of the resource within the application.
@@ -85,7 +85,7 @@ public class ClassResource implements ApplicationResource {
        }
 
        /** 
-        * Creates new application resource instance. 
+        * Creates new application resource instance. 
         * 
         * @param associatedClass the class of the which the resource is associated.
         * @param resourceName the Unique identifier of the resource within the application.
index 6b3df1b35ae536fa207a3c252993ffc16b2574f5..f169895879eb3d3abdb213e3264aa50901bf9dda 100644 (file)
@@ -50,7 +50,7 @@ public class ExternalResource implements Resource {
 
 
        /** 
-        * Creates new download component for downloading directly from given URL.
+        * Creates new download component for downloading directly from given URL.
         * @param sourceURL the source URL. 
         */
        public ExternalResource(URL sourceURL) {
@@ -61,7 +61,7 @@ public class ExternalResource implements Resource {
        }
 
        /** 
-        * Creates new download component for downloading directly from given URL.
+        * Creates new download component for downloading directly from given URL.
         * @param  sourceURL the source URL.
         */
        public ExternalResource(String sourceURL) {
index 351edb7377498e032e1092763f9f45049b1c69f7..497baa065c9080d92931ad5ee529e348aa2bfac4 100644 (file)
@@ -68,7 +68,7 @@ public class FileResource implements ApplicationResource {
        private long cacheTime = DownloadStream.DEFAULT_CACHETIME;              
 
        /** 
-        * Creates new file resource for providing given file for
+        * Creates new file resource for providing given file for
         * client terminals.
         */
        public FileResource(File sourceFile, Application application) {
index 65b25e0247518186e01dad66f4610d7e99037bcb..577964efa484d49294b5b97644f473d0eafb2640 100644 (file)
@@ -79,7 +79,7 @@ public interface Paintable extends java.util.EventListener {
         private static final long serialVersionUID = 3256725095530442805L;
 
         /** 
-         * Constructs new event.
+         * Constructs new event.
                 * @param source the paintable needing repaint.
                 */
                public RepaintRequestEvent(Paintable source) {
index af0201c0c22e1fd9c0d3c0114c7d7419615876e5..dfefe72d1591311b8f8e0f93b57529c9c743726e 100644 (file)
@@ -76,7 +76,7 @@ public class StreamResource implements ApplicationResource {
        private long cacheTime = DEFAULT_CACHETIME;     
 
        /** 
-        * Creates new stream resource for downloading from stream.
+        * Creates new stream resource for downloading from stream.
         * @param streamSource the source Stream.
         * @param filename the name of the file.
         * @param application the Application object.
index 0f709191c4bb3cc41933568903773f9d27909988..1030743e6a6997c85a404163235113971a362a99 100644 (file)
@@ -45,7 +45,7 @@ import java.net.URL;
 public interface URIHandler {
     
     /** 
-     * Handles the given relative URI. If the URI handling wants to emit
+     * Handles a given relative URI. If the URI handling wants to emit
      * a downloadable stream it can return download stream object. If no
      * emitting stream is necessary, null should be returned instead.
      * @param context  the URl.
index 2a838d0b8a1f746def7c2cd259a9237ca62ca331..e1bd1ed6b3f29135bc96cf37745f3fd6b68ef553 100644 (file)
@@ -79,7 +79,7 @@ public class UserError implements ErrorMessage {
        }
 
        /** 
-        * Creates error message with level and content mode.
+        * Creates error message with level and content mode.
         * @param message the error message.
         * @param contentMode the content Mode.
         * @param errorLevel the level of error.