Changeset 91:cbf66977a150
- Timestamp:
- 06/17/08 14:09:50 (5 years ago)
- Author:
- fbatard
- Branch:
- default
- convert_revision:
- svn:cdcfb263-7567-472c-a848-e2c2df3466e7/trunk@92
- Message:
-
correction format javadoc
- Location:
- org/w3c/unicorn
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r88
|
r91
|
|
| 1 | | // $Id: CallMethod.java,v 1.2 2008-06-17 13:41:12 fbatard Exp $ |
| | 1 | // $Id: CallMethod.java,v 1.3 2008-06-17 14:09:50 fbatard Exp $ |
| 2 | 2 | // Author: Jean-Guilhem Rouel |
| 3 | 3 | // (c) COPYRIGHT MIT, ERCIM and Keio, 2006. |
| … |
… |
|
| 23 | 23 | |
| 24 | 24 | /** |
| 25 | | * |
| | 25 | * URL for the call |
| 26 | 26 | */ |
| 27 | 27 | private URL aURL; |
-
|
r90
|
r91
|
|
| 1 | | // $Id: EmptyDocumentException.java,v 1.3 2008-06-17 14:03:09 fbatard Exp $ |
| | 1 | // $Id: EmptyDocumentException.java,v 1.4 2008-06-17 14:09:50 fbatard Exp $ |
| 2 | 2 | // Author: Jean-Guilhem Rouel |
| 3 | 3 | // (c) COPYRIGHT MIT, ERCIM and Keio, 2006. |
| … |
… |
|
| 8 | 8 | * EmptyDocumentException<br /> |
| 9 | 9 | * Created: Jul 7, 2006 5:26:56 PM<br /> |
| | 10 | * Exception used when the document is empty |
| | 11 | * @author Jean-Guilhem Rouel |
| 10 | 12 | * |
| 11 | | * @author Jean-Guilhem Rouel |
| 12 | | * Exception used when the document is empty |
| 13 | 13 | */ |
| 14 | 14 | public class EmptyDocumentException extends Exception { |
-
|
r90
|
r91
|
|
| 1 | | // $Id: NoDocumentException.java,v 1.3 2008-06-17 14:03:09 fbatard Exp $ |
| | 1 | // $Id: NoDocumentException.java,v 1.4 2008-06-17 14:09:50 fbatard Exp $ |
| 2 | 2 | // Author: Jean-Guilhem Rouel |
| 3 | 3 | // (c) COPYRIGHT MIT, ERCIM and Keio, 2006. |
| … |
… |
|
| 8 | 8 | * NoDocumentException<br /> |
| 9 | 9 | * Created: Jul 7, 2006 5:26:38 PM<br /> |
| | 10 | * Exception used when there is no document to analyze |
| | 11 | * @author Jean-Guilhem Rouel |
| 10 | 12 | * |
| 11 | | * @author Jean-Guilhem Rouel |
| 12 | | * Exception used when there is no document to analyze |
| 13 | 13 | */ |
| 14 | 14 | public class NoDocumentException extends Exception { |
-
|
r90
|
r91
|
|
| 1 | | // $Id: NoMimeTypeException.java,v 1.3 2008-06-17 14:03:09 fbatard Exp $ |
| | 1 | // $Id: NoMimeTypeException.java,v 1.4 2008-06-17 14:09:50 fbatard Exp $ |
| 2 | 2 | // Author: Jean-Guilhem Rouel |
| 3 | 3 | // (c) COPYRIGHT MIT, ERCIM and Keio, 2006. |
| … |
… |
|
| 8 | 8 | * NoMimeTypeException<br /> |
| 9 | 9 | * Created: Jul 7, 2006 5:30:51 PM<br /> |
| | 10 | * Exception that occurs when mime-type isn't specified |
| | 11 | * @author Jean-Guilhem Rouel |
| 10 | 12 | * |
| 11 | | * @author Jean-Guilhem Rouel |
| 12 | | * Exception that occurs when mime-type isn't specified |
| 13 | 13 | */ |
| 14 | 14 | public class NoMimeTypeException extends Exception { |
-
|
r90
|
r91
|
|
| 1 | | // $Id: NoTaskException.java,v 1.3 2008-06-17 14:03:09 fbatard Exp $ |
| | 1 | // $Id: NoTaskException.java,v 1.4 2008-06-17 14:09:50 fbatard Exp $ |
| 2 | 2 | // Author: Jean-Guilhem Rouel |
| 3 | 3 | // (c) COPYRIGHT MIT, ERCIM and Keio, 2006. |
| … |
… |
|
| 8 | 8 | * NoTaskException<br /> |
| 9 | 9 | * Created: Jul 7, 2006 5:43:15 PM<br /> |
| | 10 | * Exception used when the user didn't specify the task to perform |
| | 11 | * @author Jean-Guilhem Rouel |
| 10 | 12 | * |
| 11 | | * @author Jean-Guilhem Rouel |
| 12 | | * Exception used when the user didn't specify the task to perform |
| 13 | 13 | */ |
| 14 | 14 | public class NoTaskException extends Exception { |
-
|
r88
|
r91
|
|
| 1 | | // $Id: DirectInputModule.java,v 1.2 2008-06-17 13:41:12 fbatard Exp $ |
| | 1 | // $Id: DirectInputModule.java,v 1.3 2008-06-17 14:09:50 fbatard Exp $ |
| 2 | 2 | // Author: Damien LEROY. |
| 3 | 3 | // (c) COPYRIGHT MIT, ERCIM ant Keio, 2006. |
| … |
… |
|
| 12 | 12 | |
| 13 | 13 | /** |
| 14 | | * @author Damien LEROY Class used for the direct input method check |
| | 14 | * Class used for the direct input method check |
| | 15 | * @author Damien LEROY |
| 15 | 16 | */ |
| 16 | 17 | public class DirectInputModule implements InputModule { |
-
|
r88
|
r91
|
|
| 1 | | // $Id: FakeUploadInputModule.java,v 1.2 2008-06-17 13:41:12 fbatard Exp $ |
| | 1 | // $Id: FakeUploadInputModule.java,v 1.3 2008-06-17 14:09:50 fbatard Exp $ |
| 2 | 2 | // Author: Damien LEROY. |
| 3 | 3 | // (c) COPYRIGHT MIT, ERCIM ant Keio, 2006. |
| … |
… |
|
| 15 | 15 | |
| 16 | 16 | /** |
| 17 | | * @author Damien LEROY Class used for the fake upload input method check It |
| 18 | | * means make the observer believe it was a direct input whereas it |
| 19 | | * wasn't |
| | 17 | * Class used for the fake upload input method check It |
| | 18 | * means make the observer believe it was a direct input whereas it |
| | 19 | * wasn't |
| | 20 | * @author Damien LEROY |
| 20 | 21 | */ |
| 21 | 22 | public class FakeUploadInputModule implements UploadInputModule { |
-
|
r88
|
r91
|
|
| 1 | | // $Id: FileItemInputModule.java,v 1.2 2008-06-17 13:41:12 fbatard Exp $ |
| | 1 | // $Id: FileItemInputModule.java,v 1.3 2008-06-17 14:09:50 fbatard Exp $ |
| 2 | 2 | // Author: Damien LEROY. |
| 3 | 3 | // (c) COPYRIGHT MIT, ERCIM ant Keio, 2006. |
| … |
… |
|
| 14 | 14 | |
| 15 | 15 | /** |
| | 16 | * Class to deal with the file input method |
| 16 | 17 | * @author Damien LEROY |
| 17 | 18 | * |
-
|
r88
|
r91
|
|
| 1 | | // $Id: InputFactory.java,v 1.2 2008-06-17 13:41:12 fbatard Exp $ |
| | 1 | // $Id: InputFactory.java,v 1.3 2008-06-17 14:09:50 fbatard Exp $ |
| 2 | 2 | // Author: Damien LEROY. |
| 3 | 3 | // (c) COPYRIGHT MIT, ERCIM ant Keio, 2006. |
| … |
… |
|
| 15 | 15 | |
| 16 | 16 | /** |
| 17 | | * @author Damien LEROY Class which deals with the creation of input method |
| | 17 | * Class which deals with the creation of input method |
| | 18 | * @author Damien LEROY |
| 18 | 19 | */ |
| 19 | 20 | public class InputFactory { |
-
|
r88
|
r91
|
|
| 1 | | // $Id: InputModule.java,v 1.2 2008-06-17 13:41:12 fbatard Exp $ |
| | 1 | // $Id: InputModule.java,v 1.3 2008-06-17 14:09:50 fbatard Exp $ |
| 2 | 2 | // Author: Damien LEROY. |
| 3 | 3 | // (c) COPYRIGHT MIT, ERCIM ant Keio, 2006. |
| … |
… |
|
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | | * @author Damien LEROY Interface for an input module |
| | 16 | * Interface for an input module |
| | 17 | * @author Damien LEROY |
| 17 | 18 | */ |
| 18 | 19 | public interface InputModule { |
-
|
r88
|
r91
|
|
| 1 | | // $Id: URIInputModule.java,v 1.3 2008-06-17 13:41:12 fbatard Exp $ |
| | 1 | // $Id: URIInputModule.java,v 1.4 2008-06-17 14:09:50 fbatard Exp $ |
| 2 | 2 | // Author: Damien LEROY. |
| 3 | 3 | // (c) COPYRIGHT MIT, ERCIM ant Keio, 2006. |
| … |
… |
|
| 19 | 19 | |
| 20 | 20 | /** |
| 21 | | * @author Damien LEROY Class used to deal with the URI method for inputs |
| | 21 | * Class used to deal with the URI method for inputs |
| | 22 | * @author Damien LEROY |
| 22 | 23 | */ |
| 23 | 24 | public class URIInputModule implements InputModule { |
-
|
r88
|
r91
|
|
| 1 | | // $Id: UploadInputModule.java,v 1.2 2008-06-17 13:41:12 fbatard Exp $ |
| | 1 | // $Id: UploadInputModule.java,v 1.3 2008-06-17 14:09:50 fbatard Exp $ |
| 2 | 2 | // Author: Damien LEROY. |
| 3 | 3 | // (c) COPYRIGHT MIT, ERCIM ant Keio, 2006. |
| … |
… |
|
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | | * @author Damien LEROY Interface for the UploadInputModule |
| | 13 | * Interface for the UploadInputModule |
| | 14 | * @author Damien LEROY |
| 14 | 15 | */ |
| 15 | 16 | public interface UploadInputModule extends InputModule { |
-
|
r88
|
r91
|
|
| 1 | | // $Id: DirectRequestPOST.java,v 1.5 2008-06-17 13:41:11 fbatard Exp $ |
| | 1 | // $Id: DirectRequestPOST.java,v 1.6 2008-06-17 14:09:50 fbatard Exp $ |
| 2 | 2 | // Author: Damien LEROY. |
| 3 | 3 | // (c) COPYRIGHT MIT, ERCIM ant Keio, 2006. |
| … |
… |
|
| 20 | 20 | |
| 21 | 21 | /** |
| 22 | | * @author Damien LEROY Class to make a request directly using POST method |
| | 22 | * Class to make a request directly using POST method |
| | 23 | * @author Damien LEROY |
| 23 | 24 | */ |
| 24 | 25 | public class DirectRequestPOST extends Request { |