Grosse MàJ

This commit is contained in:
olivier
2008-11-25 22:11:16 +01:00
parent 53195fdfcd
commit 3e719157ea
2980 changed files with 343846 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,14 @@
package balise;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.tagext.SimpleTagSupport;
import java.io.IOException;
/**
* * * SimpleTag handler that prints "Hello, world!"
* * */
public class afficheutilisateur extends SimpleTagSupport {
public void doTag() throws JspException, IOException {
getJspContext().getOut().write( "Bonjour !" );
}
}