2223242526272829
public static TestStatus of(final Method method) { return new TestStatus(method); } public boolean isPending() { Pending pending = method.getAnnotation(Pending.class); return (pending != null); }
545556575859606162
} @Override protected IsWidget body(final ApplyContext context) { FlowPanel body = new FlowPanel(); pending = new Pending(""); body.add(pending); return body; }
44454647484950
this.dispatcher = dispatcher; } @Override protected IsWidget body(final C context) { return new Pending(Console.CONSTANTS.patch_manager_stopping_servers_body()); }
525354555657585960
424344454647484950
} @Override protected IsWidget body(final RollbackContext context) { FlowPanel body = new FlowPanel(); pending = new Pending(""); body.add(pending); return body; }