- From: Florent Batard via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 17 Jun 2008 14:09:52 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/org/w3c/unicorn/input
In directory hutz:/tmp/cvs-serv27212/org/w3c/unicorn/input
Modified Files:
UploadInputModule.java InputModule.java URIInputModule.java
FileItemInputModule.java FakeUploadInputModule.java
DirectInputModule.java InputFactory.java
Log Message:
correction format javadoc
Index: FakeUploadInputModule.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/input/FakeUploadInputModule.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- FakeUploadInputModule.java 17 Jun 2008 13:41:12 -0000 1.2
+++ FakeUploadInputModule.java 17 Jun 2008 14:09:50 -0000 1.3
@@ -14,9 +14,10 @@
import org.w3c.unicorn.contract.EnumInputMethod;
/**
- * @author Damien LEROY Class used for the fake upload input method check It
- * means make the observer believe it was a direct input whereas it
- * wasn't
+ * Class used for the fake upload input method check It
+ * means make the observer believe it was a direct input whereas it
+ * wasn't
+ * @author Damien LEROY
*/
public class FakeUploadInputModule implements UploadInputModule {
Index: DirectInputModule.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/input/DirectInputModule.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- DirectInputModule.java 17 Jun 2008 13:41:12 -0000 1.2
+++ DirectInputModule.java 17 Jun 2008 14:09:50 -0000 1.3
@@ -11,7 +11,8 @@
import org.w3c.unicorn.contract.EnumInputMethod;
/**
- * @author Damien LEROY Class used for the direct input method check
+ * Class used for the direct input method check
+ * @author Damien LEROY
*/
public class DirectInputModule implements InputModule {
Index: URIInputModule.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/input/URIInputModule.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- URIInputModule.java 17 Jun 2008 13:41:12 -0000 1.3
+++ URIInputModule.java 17 Jun 2008 14:09:50 -0000 1.4
@@ -18,7 +18,8 @@
import org.w3c.unicorn.util.Property;
/**
- * @author Damien LEROY Class used to deal with the URI method for inputs
+ * Class used to deal with the URI method for inputs
+ * @author Damien LEROY
*/
public class URIInputModule implements InputModule {
Index: InputFactory.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/input/InputFactory.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- InputFactory.java 17 Jun 2008 13:41:12 -0000 1.2
+++ InputFactory.java 17 Jun 2008 14:09:50 -0000 1.3
@@ -14,7 +14,8 @@
import org.w3c.unicorn.contract.EnumInputMethod;
/**
- * @author Damien LEROY Class which deals with the creation of input method
+ * Class which deals with the creation of input method
+ * @author Damien LEROY
*/
public class InputFactory {
Index: FileItemInputModule.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/input/FileItemInputModule.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- FileItemInputModule.java 17 Jun 2008 13:41:12 -0000 1.2
+++ FileItemInputModule.java 17 Jun 2008 14:09:50 -0000 1.3
@@ -13,6 +13,7 @@
import org.w3c.unicorn.contract.EnumInputMethod;
/**
+ * Class to deal with the file input method
* @author Damien LEROY
*
*/
Index: InputModule.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/input/InputModule.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- InputModule.java 17 Jun 2008 13:41:12 -0000 1.2
+++ InputModule.java 17 Jun 2008 14:09:50 -0000 1.3
@@ -13,7 +13,8 @@
import org.w3c.unicorn.contract.EnumInputMethod;
/**
- * @author Damien LEROY Interface for an input module
+ * Interface for an input module
+ * @author Damien LEROY
*/
public interface InputModule {
Index: UploadInputModule.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/input/UploadInputModule.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- UploadInputModule.java 17 Jun 2008 13:41:12 -0000 1.2
+++ UploadInputModule.java 17 Jun 2008 14:09:50 -0000 1.3
@@ -10,7 +10,8 @@
import org.w3c.unicorn.contract.EnumInputMethod;
/**
- * @author Damien LEROY Interface for the UploadInputModule
+ * Interface for the UploadInputModule
+ * @author Damien LEROY
*/
public interface UploadInputModule extends InputModule {
Received on Tuesday, 17 June 2008 14:10:27 UTC