Package com.rs.seagull.emulator.api
Interface StartupInformation
- All Known Subinterfaces:
StartupInformation.Ibm3270
,StartupInformation.Ibm5250
public interface StartupInformation
This interface describes the startup information for a host session. There are implementations for IBM 3270 and IBM
5250.
- Version:
- $Id: CJL2CodeTemplates.xml,v 1.2 2011/02/16 16:13:58 MRomijn Exp $
- Author:
- mromijn
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
This interface describes the startup information for an IBM 3270 host session.static interface
This interface describes the startup information for an IBM 5250 host session. -
Field Summary
Modifier and TypeFieldDescriptionstatic final String
This constant can be returned bygetEmulator()
to indicate that the startup information instance isStartupInformation.Ibm3270
static final String
This constant can be returned bygetEmulator()
to indicate that the startup information instance isStartupInformation.Ibm5250
-
Method Summary
Modifier and TypeMethodDescriptionGet the type of emulator for which this is the startup information.
-
Field Details
-
Ibm3270
This constant can be returned bygetEmulator()
to indicate that the startup information instance isStartupInformation.Ibm3270
-
Ibm5250
This constant can be returned bygetEmulator()
to indicate that the startup information instance isStartupInformation.Ibm5250
-
-
Method Details
-
getEmulator
String getEmulator()Get the type of emulator for which this is the startup information. This can be StringIbm3270
, in case this startup information is an instance ofStartupInformation.Ibm3270
. This can be StringIbm5250
, in case this startup information is an instance ofStartupInformation.Ibm5250
.- Returns:
- the type of emulator for which this is the startup information
-