public class classnamne { private String sdaf; private String dsF; private int dkl; private TextField textf; private StringItem stringItem; public void setSdaf (String S) { this.sdaf = S; } public void setDsF (String S) { this.dsF = S; } public void setDkl (int i) { this.dkl = i; } public void setTextf (String T) { this.textf.setString(T); } public void setStringItem (String S) { this.stringItem.setText(S); } public String getSdaf () { return this.sdaf; } public String getDsF () { return this.dsF; } public int getDkl () { return this.dkl; } public String getTextf () { return this.textf.getString(); } public String getStringItem () { return this.stringItem.getText(); } }