Package org.jvnet.glassfish.comms.clb.admin

Examples of org.jvnet.glassfish.comms.clb.admin.Property


            _lb.setDcrFile(lbRdr.getDcrFile());
        } catch (LbReaderException le) {
            // XXX ignore
        }

        Property prop = null;
        PropertyReader[] pRdrs = null;

        try {
            pRdrs = lbRdr.getProperties();
        } catch (LbReaderException le) {
            // should we throw this exception XXX ???
            // or fill in with default values
        }

        if ((pRdrs != null) && (pRdrs.length > 0)) {
            for (int i = 0; i < pRdrs.length; i++) {
                prop = new Property();
                pRdrs[i].accept(new PropertyVisitor(prop));
                _lb.getProperty().add(prop);
            }
        }
View Full Code Here

TOP

Related Classes of org.jvnet.glassfish.comms.clb.admin.Property

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.