41424344454647484950
public MBeanServer getAgent() throws AgentNotFoundException { if ( _server == null ) { throw new AgentNotFoundException("JBOSS MBeanServer not found"); } return _server; }
919293949596979899
} public MBeanServer getAgent() throws AgentNotFoundException { if (_server == null) throw new AgentNotFoundException("Failed to lookup JBOSS agent"); return _server; }
11121314151617181920
/* */ /* */ public MBeanServer getAgent() throws AgentNotFoundException /* */ { /* 44 */ if (_server == null) /* */ { /* 46 */ throw new AgentNotFoundException("JBOSS MBeanServer not found"); /* */ } /* */ /* 49 */ return _server; /* */ }
565758596061626364
/* */ /* */ public MBeanServer getAgent() /* */ throws AgentNotFoundException /* */ { /* 95 */ if (this._server == null) { /* 96 */ throw new AgentNotFoundException("Failed to lookup JBOSS agent"); /* */ } /* 98 */ return this._server; /* */ }