Project

General

Profile

I want to write code here. How should I do ?

Added by keating wang almost 14 years ago

I want to write code here. How should I do ?

@
public class ShipperOrderInspectionItem {

private String consigneeCn;
private String consigneeEn;
public String getConsigneeCn() {
return consigneeCn;
}
public String getConsigneeEn() {
return consigneeEn;
}
}
@

Oh, God ! I don't like the result...


Replies (2)

RE: I want to write code here. How should I do ? - Added by Eric Davis almost 14 years ago

Use <pre><code>

public class ShipperOrderInspectionItem {

    private String consigneeCn;
    private String consigneeEn;

    public String getConsigneeCn() {
        return consigneeCn;
    }

    public String getConsigneeEn() {
        return consigneeEn;
    }
}

Eric Davis

    (1-2/2)