@Override public void setDefaultRequests() throws ProcessorException { try { delegate.setDefaultRequests(); } catch (Exception e) { throw new ProcessorException("setDefaultRequests failed!", e); } }
@Override public void setRequests(Vector requests) throws ProcessorException { Guardian.assertNotNull("requests", requests); try { delegate.setRequests(requests); } catch (Exception e) { throw new ProcessorException("setRequests failed!", e); } }
@Override public Vector getRequests() throws ProcessorException { Vector requests = null; try { requests = delegate.getRequests(); } catch (Exception e) { throw new ProcessorException("getRequests failed!", e); } return requests; }
@Override public JComponent getGuiComponent() { JComponent guiComponent; try { guiComponent = delegate.getGuiComponent(); } catch (Exception e) { throw new RuntimeException("getGuiComponent failed!", e); } requestWindowSize(); return guiComponent; }