Grosse MàJ
This commit is contained in:
BIN
workspace/ROOT/balise/afficheutilisateur.class
Normal file
BIN
workspace/ROOT/balise/afficheutilisateur.class
Normal file
Binary file not shown.
14
workspace/ROOT/balise/afficheutilisateur.java
Normal file
14
workspace/ROOT/balise/afficheutilisateur.java
Normal 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 !" );
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user