Setting EPITerminal properties programmatically

The EPITerminal terminal properties sheet is not accessible. To set properties programmatically, use the getTerminal() method of the EPITerminal object and cast it to a Terminal object. For example, if epiTerm is an EPITerminal object, code something like the following:
Terminal term = (Terminal)epiTerm.getTerminal();
You can then use methods on the Terminal object to set these properties. To set the name for a CICS® server named YOURSERV, code the following:
term.setServerName("YOURSERV");
See the Javadoc supplied with the product for full details of these setter methods.