Ok, je me doutais bien pour les update(), merci de l'explication.
Pour le code c'est bien cela que tu veux ?
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
| public JTabbedPane getJtCasterData() {
return jtCasterData;
}
public void setJtCasterData(JTabbedPane jtCasterData) {
this.jtCasterData = jtCasterData;
}
public JTextFieldAutoSelect getJtNbrOfCaster() {
return jtNbrOfCaster;
}
public void setJtNbrOfCaster(JTextFieldAutoSelect jtNbrOfCaster) {
this.jtNbrOfCaster = jtNbrOfCaster;
}
public CasterData getCstrD2() {
return cstrD2;
}
public void setCstrD2(CasterData cstrD2) {
this.cstrD2 = cstrD2;
}
public JPanel getJpStrandDevice2() {
return jpStrandDevice2;
}
public void setJpStrandDevice2(JPanel jpStrandDevice2) {
this.jpStrandDevice2 = jpStrandDevice2;
}
public JButton getJbAddCommonDevice() {
return jbAddCommonDevice;
}
public void setJbAddCommonDevice(JButton jbAddCommonDevice) {
this.jbAddCommonDevice = jbAddCommonDevice;
}
public JScrollPane getjSPCommon() {
return jSPCommon;
}
public void setjSP3(JScrollPane jSPCommon) {
this.jSPCommon = jSPCommon;
}
public LinkedList<PanelDevice> getlStrDevice2() {
return lStrDevice2;
}
public void setlStrDevice2(LinkedList<PanelDevice> lStrDevice2) {
this.lStrDevice2 = lStrDevice2;
}
public JTextFieldAutoSelect getJtCasterSpeed() {
return jtCasterSpeed;
}
public void setJtCasterSpeed(JTextFieldAutoSelect jtCasterSpeed) {
this.jtCasterSpeed = jtCasterSpeed;
}
public JTextFieldAutoSelect getJtLength() {
return jtLength;
}
public void setJtLength(JTextFieldAutoSelect jtLength) {
this.jtLength = jtLength;
}
public JTextFieldAutoSelect getJtNbrOfStrd() {
return jtNbrOfStrd;
}
public void setJtNbrOfStrd(JTextFieldAutoSelect jtNbrOfStrd) {
this.jtNbrOfStrd = jtNbrOfStrd;
} |
Autrement, j'aurais plus vu un code dans le genre dans la méthode:
cstrD2.getJlCasterSpeed.setText(cstrD2.getJlCasterSpeed());
Partager