Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Statuses in RPCResponse should be final

    Using 3.0.

    In com.smartgwt.client.rpc.RPCResponse, the constants for statuses are not really constants because they are not final.
    Due to this, it's not possible to use them in a switch statement like below:

    Code:
    switch (status) {
        case RPCResponse.STATUS_SUCCESS:
            ...
    }
Working...
X