HtmlFormGenerator
bonjour,
s'il vous pla=EEt je souhaite g=E9n=E9rer une page HTML a des label (Identi=
ficateur, nom, NumTel, email) et des champ de saisir =E0 c=F4t=E9 de chaque=
label dans le m=EAme ligne avec des taille diff=E9rents (je les d=E9finir =
=E0 l'aide des annotations )
voici mon classe contact
public class Contact {
@Column(label="Identificateur", size=10)
private int id;
=09
@Column(label="Nom",size=30)
private String name;
=09
@Column(label="N de t=E9l=E9phone")
private String tel;
=09
@Column(label="Adresse Email",size=30)
private String email;
public Contact() {
super();
}
public Contact(int id, String name, String tel, String email) {
super();
this.id = id;
this.name = name;
this.tel = tel;
this.email = email;
}
et voici aussi l'annotation @culumn pour les champs
@Retention(RetentionPolicy.RUNTIME) // RetentionPolicy.SOURCE ==> par d=
efault
@Target(ElementType.FIELD)
public @interface Column {
String label();
int size() default 20;
//String sqlType() default "VARCHAR";
}
et voila mon code JAVA qui sera faire ceci que je entrain de expliquer
public class HtmlFormGenerator {
private Object source;
private String target; //chemin des fichiers cibles
public HtmlFormGenerator(){ =09
}
public static boolean generate(){
//... formulaire de saisie des informations sur l objet, l =
//introspection et l annotation
return true;
}}
s'il vous pla=EEt si quelqu'un a un solution ou un suggestion
et merci d'avance