Package com.k42b3.xoxa

Examples of com.k42b3.xoxa.BotAbstract$Listener


     
      if(items != null)
      {
        DefaultComboBoxModel<SelectItem> model = new DefaultComboBoxModel<SelectItem>(items);

        Select input = new Select(model);
        input.setPreferredSize(new Dimension(300, 22));

        // set select if value available
        if(nodeValue != null)
        {
          for(int i = 0; i < model.getSize(); i++)
          {
            SelectItem boxItem = (SelectItem) model.getElementAt(i);

            if(boxItem.getKey().equals(nodeValue.getTextContent()))
            {
              input.setSelectedIndex(i);
            }
          }
        }


        if(nodeDisabled != null && nodeDisabled.getTextContent().equals("true"))
        {
          input.setEnabled(false);
        }

        item.add(label);
        item.add(input);
View Full Code Here


        // set select if value available
        if(nodeValue != null)
        {
          for(int i = 0; i < model.getSize(); i++)
          {
            SelectItem boxItem = (SelectItem) model.getElementAt(i);

            if(boxItem.getKey().equals(nodeValue.getTextContent()))
            {
              input.setSelectedIndex(i);
            }
          }
        }
View Full Code Here

      Node nodeLabel = this.getChildNode(options.get(i), "label");
      Node nodeValue = this.getChildNode(options.get(i), "value");

      if(nodeLabel != null && nodeValue != null)
      {
        items[i] = new SelectItem(nodeValue.getTextContent(), nodeLabel.getTextContent());
      }
    }

    return items;
  }
View Full Code Here

    item.setLayout(new FlowLayout());

    JLabel label = new JLabel(nodeLabel.getTextContent());
    label.setPreferredSize(new Dimension(100, 22));

    Textarea input = new Textarea();
    JScrollPane scpInput = new JScrollPane(input);
    scpInput.setPreferredSize(new Dimension(300, 200));

    if(nodeValue != null)
    {
      input.setText(nodeValue.getTextContent());
    }

    item.add(label);
    item.add(scpInput);
View Full Code Here

         private final boolean hidePrivate = vizState.hidePrivate(), hideMeta = vizState.hideMeta();
         {
            do_start();
            setRootVisible(false);
            setShowsRootHandles(false);
            listeners.add(new Listener() {
               public Object do_action(Object sender, Event event) { return null; }
               public Object do_action(Object sender, Event event, Object arg) { zoom(arg); return null; }
            });
         }
         @Override public String convertValueToText(Object value, boolean sel, boolean expand, boolean leaf, int i, boolean focus) {
View Full Code Here

        final XMLBeansModel model = new XMLBeansModel(Factory.parse(is).getJbossesb());
       
        final List<Listener> awareListeners = model.getESBAwareListeners() ;
        assertEquals("Listener count", 1, awareListeners.size()) ;
       
        final Listener listener = awareListeners.get(0) ;
        assertTrue("JmsListener", listener instanceof JmsListener) ;
       
        final Document doc = YADOMUtil.createDocument() ;
        final Element root = doc.createElement("root") ;
        final Element listenerElement = JmsListenerMapper.map(root, (JmsListener)listener, model) ;
View Full Code Here

    JmsMessageFilter listenerDestination = awareListener.getJmsMessageFilter();
    assertEquals("queue/B", listenerDestination.getDestName());
    assertEquals(JmsMessageFilter.DestType.TOPIC, listenerDestination.getDestType());
    assertEquals("service='Reconciliation'", listenerDestination.getSelector());

    Listener untypedAwareListener = awareListeners.get(1);
    assertEquals("Bank-Listener-Generic", untypedAwareListener.getName());
    assertEquals("my-generic-bus", untypedAwareListener.getBusidref());
    assertTrue(!untypedAwareListener.getIsGateway());

    Service gatewayService = model.getService(gatewayListener);
    Service awareService = model.getService(awareListener);
    assertSame(gatewayService, awareService);
    assertEquals("Bank", awareService.getCategory());
View Full Code Here

        final XMLBeansModel model = new XMLBeansModel(Factory.parse(is).getJbossesb());
       
        final List<Listener> awareListeners = model.getESBAwareListeners() ;
        assertEquals("Listener count", 1, awareListeners.size()) ;
       
        final Listener listener = awareListeners.get(0) ;
        assertTrue("JmsListener", listener instanceof JmsListener) ;
       
        final Document doc = YADOMUtil.createDocument() ;
        final Element root = doc.createElement("root") ;
        final Element listenerElement = JmsListenerMapper.map(root, (JmsListener)listener, model) ;
View Full Code Here

    JmsMessageFilter listenerDestination = awareListener.getJmsMessageFilter();
    assertEquals("queue/B", listenerDestination.getDestName());
    assertEquals(JmsMessageFilter.DestType.TOPIC, listenerDestination.getDestType());
    assertEquals("service='Reconciliation'", listenerDestination.getSelector());

    Listener untypedAwareListener = awareListeners.get(1);
    assertEquals("Bank-Listener-Generic", untypedAwareListener.getName());
    assertEquals("my-generic-bus", untypedAwareListener.getBusidref());
    assertTrue(!untypedAwareListener.getIsGateway());

    Service gatewayService = model.getService(gatewayListener);
    Service awareService = model.getService(awareListener);
    assertSame(gatewayService, awareService);
    assertEquals("Bank", awareService.getCategory());
View Full Code Here

        final XMLBeansModel model = new XMLBeansModel(Factory.parse(is).getJbossesb());
       
        final List<Listener> awareListeners = model.getESBAwareListeners() ;
        assertEquals("Listener count", 1, awareListeners.size()) ;
       
        final Listener listener = awareListeners.get(0) ;
        assertTrue("JmsListener", listener instanceof JmsListener) ;
       
        final Document doc = YADOMUtil.createDocument() ;
        final Element root = doc.createElement("root") ;
        final Element listenerElement = JmsListenerMapper.map(root, (JmsListener)listener, model) ;
View Full Code Here

TOP

Related Classes of com.k42b3.xoxa.BotAbstract$Listener

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.