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
Nested Classes Modifier and Type Interface Description static interface
StartupInformation.Ibm3270
This interface describes the startup information for an IBM 3270 host session.static interface
StartupInformation.Ibm5250
This interface describes the startup information for an IBM 5250 host session.
-
Field Summary
Fields Modifier and Type Field Description static String
Ibm3270
This constant can be returned bygetEmulator()
to indicate that the startup information instance isStartupInformation.Ibm3270
static String
Ibm5250
This constant can be returned bygetEmulator()
to indicate that the startup information instance isStartupInformation.Ibm5250
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getEmulator()
Get the type of emulator for which this is the startup information.
-
-
-
Field Detail
-
Ibm3270
static final String Ibm3270
This constant can be returned bygetEmulator()
to indicate that the startup information instance isStartupInformation.Ibm3270
-
Ibm5250
static final String Ibm5250
This constant can be returned bygetEmulator()
to indicate that the startup information instance isStartupInformation.Ibm5250
-
-
Method Detail
-
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
-
-