Examples of CompositeData


Examples of javax.management.openmbean.CompositeData

        if (selectionIndex == -1)
        {
            return;
        }
       
        final CompositeData selectedBindingRecord = (CompositeData)_keysTable.getItem(selectionIndex).getData();

        final String bindingKey = (String) selectedBindingRecord.get(BINDING_KEY);
       
        selectionIndex = _queuesTable.getSelectionIndex();
        if (selectionIndex == -1)
        {
            return;
View Full Code Here

Examples of org.apache.activemq.util.URISupport.CompositeData

    public Transport doCompositeConnect(URI location) throws Exception {
        URI brokerURI;
        String host;
        Map<String, String> options;
        boolean create = true;
        CompositeData data = URISupport.parseComposite(location);
        if (data.getComponents().length == 1 && "broker".equals(data.getComponents()[0].getScheme())) {
            brokerURI = data.getComponents()[0];
            CompositeData brokerData = URISupport.parseComposite(brokerURI);
            host = (String)brokerData.getParameters().get("brokerName");
            if (host == null) {
                host = "localhost";
            }
            if (brokerData.getPath() != null) {
                host = data.getPath();
            }
            options = data.getParameters();
            location = new URI("vm://" + host);
        } else {
View Full Code Here

Examples of org.eclipse.php.internal.ui.wizards.CompositeData

   
    beforeLocationGroup();
   
    PHPLocationGroup = new LocationGroup(composite, nameGroup, getShell());
   
    CompositeData data = new CompositeData();
    data.setParetnt(composite);
    data.setSettings(getDialogSettings());
    data.setObserver(PHPLocationGroup);

    versionGroup = new VersionGroup(this, composite);
    detectGroup = new DetectGroup(composite, PHPLocationGroup, nameGroup);

    nameGroup.addObserver(PHPLocationGroup);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.