Début de la validation pour l'ajout de conférence.

L'ajout des membres existant marche.
Policy failures:   
Code warning
- failed on resource ConferenceValidator.java. Reason: Class is a raw type. References to generic type Class<T> should be parameterized, line 10
- failed on resource validation. Reason: Class is a raw type. References to generic type Class<T> should be parameterized, line 10
- failed on resource AddConferenceController.java. Reason: HashSet is a raw type. References to generic type HashSet<E> should be parameterized, line 149
- failed on resource AddConferenceController.java. Reason: Iterator is a raw type. References to generic type Iterator<E> should be parameterized, line 108
- failed on resource AddConferenceController.java. Reason: Iterator is a raw type. References to generic type Iterator<E> should be parameterized, line 115
... and more.  
Override reason:   
go
This commit is contained in:
Frederic Debuire
2008-01-31 14:56:36 +00:00
parent 62b624fde4
commit 444b6934de
9 changed files with 211 additions and 139 deletions

View File

@@ -8,9 +8,9 @@
<form:form commandName="formConference" name="monForm">
<fmt:message key="conference.title" /> <input type="text" name="title"/> <br/><br />
<fmt:message key="conference.description" /> <textarea name="description"></textarea> <br/><br />
<fmt:message key="conference.otherInformations" /> <textarea name="otherInformations"></textarea> <br/><br />
<fmt:message key="conference.title" /> <form:input path="title"/> <form:errors path="title" /> <br/><br />
<fmt:message key="conference.description" /> <form:textarea path="description" /> <form:errors path="description" /> <br/><br />
<fmt:message key="conference.otherInformations" /> <form:textarea path="otherInformations" /> <br/><br />
<input type="submit" align="middle" name="_target1" value="Next" />