1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
package com.promotelec.exemple;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Group;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Text;
public class CR_promotelec {
private Group group = null;
private Label RS = null;
private Label contact = null;
private Label fonction = null;
private Label adresse = null;
private Label durée = null;
private Label date = null;
private Label heure = null;
private Label ville = null;
private Label Catégorie = null;
private Composite composite = null;
public CR_promotelec(){
group = new Group(composite ,SWT.NONE);
Catégorie = new Label(group, SWT.LEFT);
adresse = new Label(group, SWT.LEFT);
contact = new Label(group, SWT.LEFT);
date = new Label(group, SWT.LEFT);
ville = new Label(group, SWT.LEFT);
heure = new Label(group, SWT.LEFT);
durée = new Label(group, SWT.LEFT);
fonction = new Label(group, SWT.LEFT);
RS = new Label(group, SWT.LEFT);
}
public Label getAdresse() {
return adresse;
}
public void setAdresse(Label adresse) {
this.adresse = adresse;
}
public Label getCatégorie() {
return Catégorie;
}
public void setCatégorie(Label catégorie) {
Catégorie = catégorie;
}
}
public Label getContact() {
return contact;
}
public void setContact(Label contact) {
this.contact = contact;
}
public Label getDate() {
return date;
}
public void setDate(Label date) {
this.date = date;
}
public Label getDurée() {
return durée;
}
public void setDurée(Label durée) {
this.durée = durée;
}
public Label getFonction() {
return fonction;
}
public void setFonction(Label fonction) {
this.fonction = fonction;
}
public Group getGroup() {
return group;
}
public void setGroup(Group group) {
this.group = group;
}
public Label getHeure() {
return heure;
}
public void setHeure(Label heure) {
this.heure = heure;
}
public Label getVille() {
return ville;
}
public void setVille(Label ville) {
this.ville = ville;
}
public void initialize(){
}
} |