public InboxEditor(Caller<InboxService> inboxService, final String inboxName, final PlaceManager placeManager, final Event<PathChangeEvent> pathChangeEvent) {
inboxPagedTable = new InboxPagedTable(inboxService, inboxName);
Column<InboxPageRow, String> openColumn = new Column<InboxPageRow, String>(new ButtonCell()) {
public String getValue(InboxPageRow row) {
return "Open";
}
};