| IndependentSubmitter |
package Sight.Generators;
/** Implemented by the generators that can independently submit
* requests to the server and call frmSelectGenerator the
* second time. The interface indicates that for this case
* it is necessary to open the new generator instead of
* closing the loop by submitting the result to submitter
* itself.
*/
public interface IndependentSubmitter extends abstractRobotGenerator
{
};| IndependentSubmitter |