如何在java标签中设置属性

时间:2013-10-04 15:36:46

标签: java

我需要创建一个Class CustApp:

  • 创建一个Customer对象,一个名为c的Customer变量,并指定 c的对象。
  • 设置客户属性的值。
  • 创建CustFrame对象并传递Customer变量c。
  • 创建名为cf的CustFrame变量,指定CustFrame对象 来cf。

到目前为止,我有这段代码,但我无法弄清楚如何定义属性。

public class CustApp {

    public static void main(String[] args) {

        Customer c = new Customer();
        c.setBounds(62, 65, 176, 23);
        c.setBounds(62, 120, 176, 23);
        c.setBounds(62, 175, 176, 23);
        c.setBounds(62, 230, 176, 23);
        c.setText(c.getCustName());
        c.setText(c.getShipToStreet());
        c.setText(c.getShipToCity() + ", " + c.getShipToState() + "    " + c.getShipToZip());
        c.setText(c.getContactPerson() + "    Ph: " + c.getContactPhone());
        CustFrame cf = new CustFrame(c);

    }

}

0 个答案:

没有答案