ch.sahits.codegen.java.wizards
Interface IInputMethodSelectionHandler


public interface IInputMethodSelectionHandler

This interface defines the handle methods for the input method radio button selection.
The methods should be declared protected. Since this is not possible in an interface declaration any implementation must assertain, that the method is not called from anywhere else.

Since:
1.2.0
Author:
Andi Hotz

Method Summary
 void handleOnClickWithDBConnection(boolean selected)
          Handle the action of the selecting/unselecting of the radio button with database connection.
 void handleOnClickWithInputFile(boolean selected)
          Handle the action of the selecting/unselecting of the radio button with input file
 void handleOnClickWithoutDB(boolean selected)
          Handle the action of the selecting/unselecting of the radio button without database
 

Method Detail

handleOnClickWithoutDB

void handleOnClickWithoutDB(boolean selected)
Handle the action of the selecting/unselecting of the radio button without database

Parameters:
selected - is the radio button selected

handleOnClickWithInputFile

void handleOnClickWithInputFile(boolean selected)
Handle the action of the selecting/unselecting of the radio button with input file

Parameters:
selected - is the radio button selected

handleOnClickWithDBConnection

void handleOnClickWithDBConnection(boolean selected)
Handle the action of the selecting/unselecting of the radio button with database connection.

Parameters:
selected - is the radio button selected