Eclipseplugins
UserExitFactory.java
1 package com.proalpha.pds.paconnector.userexit;
2 
3 import com.proalpha.pds.exception.ProALPHANotAvailableException;
4 import com.proalpha.pds.paconnector.PaProject;
5 import com.proalpha.pds.paconnector.parameter.StartparameterReader;
6 
7 public class UserExitFactory {
8 
9  public UserExitDelegate createUserExitDelegate(PaProject paProject, StartparameterReader startparameterReader)
11  return new UserExitDelegateImpl(paProject, startparameterReader);
12  }
13 
14 }