예제 #1
0
 @Override
 public void setDefaultRequests() throws ProcessorException {
   try {
     delegate.setDefaultRequests();
   } catch (Exception e) {
     throw new ProcessorException("setDefaultRequests failed!", e);
   }
 }
예제 #2
0
 @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);
   }
 }
예제 #3
0
 @Override
 public Vector getRequests() throws ProcessorException {
   Vector requests = null;
   try {
     requests = delegate.getRequests();
   } catch (Exception e) {
     throw new ProcessorException("getRequests failed!", e);
   }
   return requests;
 }
예제 #4
0
 @Override
 public JComponent getGuiComponent() {
   JComponent guiComponent;
   try {
     guiComponent = delegate.getGuiComponent();
   } catch (Exception e) {
     throw new RuntimeException("getGuiComponent failed!", e);
   }
   requestWindowSize();
   return guiComponent;
 }