if (wm != null) {
if (wm instanceof WebModule) {
_wm = (WebModule) wm;
} else if (wm instanceof J2eeApplication) {
J2eeApplication jm = (J2eeApplication) wm;
ElementProperty prop = null;
String converged = null;
prop = jm.getElementPropertyByName(IS_CONVERGED);
if (prop != null)
converged = prop.getValue();
isConverged = Boolean.valueOf(converged);
}
else {
String msg = _strMgr.getString("UnknownTypeInWebModuleReader");
throw new RuntimeException(msg);