Examples of ResetAction


Examples of fr.soleil.bean.samplesbean.view.action.ResetAction

        actionManager.addAction(validateAction);
        buttonPanel.add(valiteButton);

        // Initiate the button for reset
        Icon iconReset = icons.getIcon("samples.clearLine");
        Action resetAction = new ResetAction("Reset", iconReset, samplesManagerModel);
        actionManager.addAction(resetAction);
        resetButton = new JButton("Reset");
        resetButton.setIcon(iconReset);
        resetButton.setAction(resetAction);
        buttonPanel.add(resetButton);
View Full Code Here

Examples of fr.soleil.bean.samplesbean.view.action.ResetAction

        actionManager.addAction(validateAction);
        buttonPanel.add(valiteButton);

        // Initiate the button for reset
        Icon iconReset = icons.getIcon("samples.clearLine");
        Action resetAction = new ResetAction("Reset", iconReset, samplesManagerModel);
        actionManager.addAction(resetAction);
        resetButton = new JButton("Reset");
        resetButton.setIcon(iconReset);
        resetButton.setAction(resetAction);
        buttonPanel.add(resetButton);
View Full Code Here

Examples of fr.soleil.bean.samplesbean.view.action.ResetAction

        actionManager.addAction(validateAction);
        buttonPanel.add(valiteButton);

        // Initiate the button for reset
        Icon iconReset = icons.getIcon("samples.clearLine");
        Action resetAction = new ResetAction("Reset", iconReset, samplesManagerModel);
        actionManager.addAction(resetAction);
        resetButton = new JButton("Reset");
        resetButton.setIcon(iconReset);
        resetButton.setAction(resetAction);
        buttonPanel.add(resetButton);
View Full Code Here

Examples of org.geotools.swing.action.ResetAction

                toolBar.addSeparator();
            }

            if (toolSet.contains(Tool.RESET)) {
                btn = new JButton(new ResetAction(mapPane));
                btn.setName(TOOLBAR_RESET_BUTTON_NAME);
                toolBar.add(btn);
            }

            panel.add(toolBar, "grow");
View Full Code Here

Examples of org.geotools.swt.action.ResetAction

        this.renderer = renderer;

        // drawAction = new DrawShapeAction();
        infoAction = new InfoAction();
        panAction = new PanAction();
        resetAction = new ResetAction();
        zoominAction = new ZoomInAction();
        zoomoutAction = new ZoomOutAction();
        openShapeAction = new OpenShapefileAction();
        openCoverageAction = new OpenGeotiffAction();
View Full Code Here

Examples of xmldb.simplerss.ui.action.ResetAction

      // PRESSED, THE CONTENT OF THE Output IS ERASED.
      //
      p = new Box(BoxLayout.X_AXIS);
      p.add(Box.createHorizontalStrut(50));
      JButton reset = new JButton("Reset");
      reset.addActionListener(new ResetAction(swingUI));
      p.add(reset);
      panel.add(p);
      panel.add(Box.createVerticalStrut(30));

      return panel;
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.