Package org.jacorb.imr

Examples of org.jacorb.imr.ServerInfo


     *
     * @param index the servers row in the table.
     */
    public void refreshServer(int index){
    try{
        ServerInfo _server = m_admin.get_server_info(m_servers[index].name);

        m_servers[index] = _server;

        buildServerNode(index);

View Full Code Here


            }
            else
                setText(_poa.name);
        }
        else if (_node instanceof ServerInfo){
            ServerInfo _server = (ServerInfo) _node;

            setToolTipText("Server is "
                           + ((_server.active)? "active" : "down")
                           + ((_server.holding)? "and holding" : ""));
    
View Full Code Here

TOP

Related Classes of org.jacorb.imr.ServerInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.