initXlet() proscribed functionality

Title: initXlet() proscribed functionality

Number: 40

Specification reference: (Section 6.1.2 page 7)
“While it is possible for applications to receive AWT focus events or user input events while in the paused state, an application SHALL NOT request focus, install AWT or DVBEvent listeners, or make itself visible within initXlet().”

Assertions:
1. The application does not request focus
2. The application does not install AWT
3. The application does not install DVBEvent listeners
4. The application does not make itself visible within initXlet()

Test Procedures:
1. Manually inspect the source code
2. Use Java reflection API or other tools to inspect the application .class files

Task – Expected result
1. The prohibited invocations are not found.