Examples of SelectionListener

@author Portet to jme3 by user starcom "Paul Kashofer Austria" @see ImageGraphics
  • com.sun.dtv.lwuit.events.SelectionListener
    Invoked to indicate a selection change in the list model @author Chen Fishbein
  • diva.canvas.interactor.SelectionListener
    A model for graph selections which can be listened to. @author Michael Shilman @version $Id: SelectionListener.java,v 1.9 2005/07/08 19:54:56 cxh Exp $
  • edu.stanford.bmir.protege.web.client.ui.selection.SelectionListener
    Listener interface for the generic {@link Selectable} interface.
  • edu.stanford.smi.protege.util.SelectionListener
  • org.eclipse.swt.events.SelectionListener
    Classes which implement this interface provide methods that deal with the events that are generated when selection occurs in a control.

    After creating an instance of a class that implements this interface it can be added to a control using the addSelectionListener method and removed using the removeSelectionListener method. When selection occurs in a control the appropriate method will be invoked.

    @see SelectionAdapter @see SelectionEvent
  • org.jitterbit.ui.selection.SelectionListener
    Listens to selection changes. @author Torgil @since 1.2
  • org.restlet.util.SelectionListener
    Callback interface when a NIO selection occurs on the selectable object. @author Jerome Louvel
  • org.woped.qualanalysis.paraphrasing.action.SelectionListener

  • Examples of com.eteks.sweethome3d.model.SelectionListener

      /**
       * Adds a selection listener to catalog that enables / disables Add Furniture action.
       */
      private void addCatalogSelectionListener() {
        getFurnitureCatalogController().addSelectionListener(new SelectionListener() {
              public void selectionChanged(SelectionEvent ev) {
                enableActionsBoundToSelection();
              }
            });
      }
    View Full Code Here

    Examples of com.eteks.sweethome3d.model.SelectionListener

      /**
       *  Adds a selection listener to home that enables / disables actions on selection.
       */
      private void addHomeSelectionListener() {
        if (this.home != null) {
          this.home.addSelectionListener(new SelectionListener() {
            public void selectionChanged(SelectionEvent ev) {
              enableActionsBoundToSelection();
            }
          });
        }
    View Full Code Here

    Examples of com.eteks.sweethome3d.model.SelectionListener

        return this.furnitureView;
      }
     
      private void addModelListeners() {
        // Add a selection listener that gets the lead selected piece in home
        this.home.addSelectionListener(new SelectionListener() {
            public void selectionChanged(SelectionEvent ev) {
              List<HomePieceOfFurniture> selectedFurniture =
                  Home.getFurnitureSubList(home.getSelectedItems());
              if (selectedFurniture.isEmpty()) {
                leadSelectedPieceOfFurniture = null;
    View Full Code Here

    Examples of com.eteks.sweethome3d.model.SelectionListener

                  || Compass.Property.VISIBLE.name().equals(propertyName)) {
                revalidate();
              }
            }
          });
        home.addSelectionListener(new SelectionListener () {
            public void selectionChanged(SelectionEvent ev) {
              repaint();
            }
          });
        home.addPropertyChangeListener(Home.Property.BACKGROUND_IMAGE,
    View Full Code Here

    Examples of com.extjs.gxt.ui.client.event.SelectionListener

    public class SaveButton extends Button {
     
      public static String SAVE = "Guardar";

      public SaveButton(final Window window){
        super(SAVE, new SelectionListener() {

          @Override
          public void componentSelected(ComponentEvent ce) {
            window.onSave();
          }
    View Full Code Here

    Examples of com.jme3.app.SettingsDialog.SelectionListener

            final AtomicBoolean done = new AtomicBoolean();
            final AtomicInteger result = new AtomicInteger();
            final Object lock = new Object();

            final SelectionListener selectionListener = new SelectionListener() {

                public void onSelection(int selection) {
                    synchronized (lock) {
                        done.set(true);
                        result.set(selection);
    View Full Code Here

    Examples of com.sun.dtv.lwuit.events.SelectionListener

        }

        private void fireSelectionEvent(int oldIndex, int newIndex){
            Enumeration listenersEnum = selectionListeners.elements();
            while(listenersEnum.hasMoreElements()){
                SelectionListener l = (SelectionListener)listenersEnum.nextElement();
                l.selectionChanged(oldIndex, newIndex);
            }
        }
    View Full Code Here

    Examples of diva.canvas.interactor.SelectionListener

        /**
         * Make the object that listens for changes in the figure selection and
         * notifies the target figure listeners.
         */
        private void _makeSelectionListener() {
            _selectionListener = new SelectionListener() {

                public void selectionChanged(SelectionEvent e) {
                    try {
                        Iterator it = e.getSelectionAdditions();
                        while (it.hasNext()) {
    View Full Code Here

    Examples of edu.stanford.bmir.protege.web.client.ui.selection.SelectionListener

                    }
                }
            });

            //listener for adjusting the watch button to the selection in tree
            addSelectionListener(new SelectionListener() {
                public void selectionChanged(SelectionEvent event) {
                    updateWatchedMenuState(event.getSelectable().getSelection());
                }
            });
    View Full Code Here

    Examples of edu.stanford.smi.protege.util.SelectionListener

            }
          }
        };

        tab.getSelectionModel().addSelectionListener(owlVizSelectionListener);
        treePanel.addSelectionListener(new SelectionListener() {
          public void selectionChanged(SelectionEvent event) {
            int item = event.getSelectable().getSelection().size() - 1;
            if(item > -1) {
              Object sel = event.getSelectable().getSelection().toArray()[item];
              if(sel instanceof OWLNamedClass) {
    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.