if (this.componentPort == null) {
ComponentPort port = super.getComponentPort();
if (port instanceof DynamicComponentPort) {
this.componentPort = (DynamicComponentPort) port;
} else {
throw new XBayaRuntimeException("UNEXPECTED ERROR: Unable to resolve Port");
}
}
return this.componentPort;
}