Examples of DeleteAction


Examples of org.geotools.data.wfs.v1_0_0.Action.DeleteAction

            Map hints) throws IOException, OperationNotSupportedException {
            if (!canEncode(element, value, hints)) {
                return;
            }

            DeleteAction a = (DeleteAction) value;

            AttributesImpl attributes = new AttributesImpl();
            attributes.addAttribute(WFSSchema.NAMESPACE.toString(),
                attrs[1].getName(), null, "string", a.getTypeName());

            output.startElement(element.getNamespace(), element.getName(),
                attributes);

            elems[0].getType().encode(elems[0], a.getFilter(), output, hints);

            output.endElement(element.getNamespace(), element.getName());
        }
View Full Code Here

Examples of org.gradle.api.file.DeleteAction

        assertTrue(isDirectory() || mkdirs());
        return this;
    }

    public TestFile deleteDir() {
        DeleteAction delete = new DeleteActionImpl(new IdentityFileResolver());
        delete.delete(this);
        return this;
    }
View Full Code Here

Examples of org.neo4j.neoclipse.action.context.DeleteAction

     */
    public NeoGraphMenu( final NeoGraphViewPart graphView )
    {
        this.graphView = graphView;
        graphViewer = graphView.getViewer();
        deleteAction = new DeleteAction( graphView );
        backAction = new GoBackAction( graphView );
        forwardAction = new GoForwardAction( graphView );
        decAction = new DecreaseTraversalDepthAction( graphView );
        incAction = new IncreaseTraversalDepthAction( graphView );
        startAction = new StartAction( graphView );
View Full Code Here

Examples of org.neo4j.neoclipse.property.action.DeleteAction

        copyAction = new CopyAction( parent, this );
        menuMgr.add( copyAction );
        pasteAction = new PasteAction( parent, this );
        pasteAction.setEnabled( false );
        menuMgr.add( pasteAction );
        deleteAction = new DeleteAction( parent, this );
        menuMgr.add( deleteAction );
        renameAction = new RenameAction( parent, this );
        menuMgr.add( renameAction );
        addNodeLabelAction = new AddNodeLabelAction( parent, this );
        menuMgr.add( addNodeLabelAction );
View Full Code Here

Examples of org.netbeans.modules.languages.pl_sql.editor.explorer.nodes.actions.DeleteAction

    }

    private OracleTopComponent() {
        initComponents();
        org.openide.awt.Actions.connect(AddjButton, (Action) new AddAction());
        org.openide.awt.Actions.connect(DeletejButton, (Action) new DeleteAction());
        org.openide.awt.Actions.connect(RefreshjButton, (Action) new RefreshAction());

        org.openide.awt.Actions.connect(UserjToggleButton, (Action) new UserOAccessAction());
        org.openide.awt.Actions.connect(AlljToggleButton, (Action) new AllOAccessAction());
        org.openide.awt.Actions.connect(DBAjToggleButton, (Action) new DBAOAccessAction());
View Full Code Here

Examples of org.objectstyle.wolips.eomodeler.actions.DeleteAction

  public EOModelClipboardHandler() {
    _cutAction = new CutAction();
    _copyAction = new CopyAction();
    _pasteAction = new PasteAction();
    _deleteAction = new DeleteAction();
  }
View Full Code Here

Examples of org.openstreetmap.josm.actions.mapmode.DeleteAction

        // toolBarActions, map mode buttons
        addMapMode(new IconToggleButton(mapModeSelect = new SelectAction(this)));
        addMapMode(new IconToggleButton(mapModeSelectLasso = new LassoModeAction(), true));
        addMapMode(new IconToggleButton(mapModeDraw = new DrawAction(this)));
        addMapMode(new IconToggleButton(mapModeZoom = new ZoomAction(this)));
        addMapMode(new IconToggleButton(new DeleteAction(this), true));
        addMapMode(new IconToggleButton(new ParallelWayAction(this), true));
        addMapMode(new IconToggleButton(new ExtrudeAction(this), true));
        addMapMode(new IconToggleButton(new ImproveWayAccuracyAction(Main.map), false));
        toolBarActionsGroup.setSelected(allMapModeButtons.get(0).getModel(), true);
        toolBarActions.setFloatable(false);
View Full Code Here

Examples of org.pentaho.reporting.designer.core.actions.global.DeleteAction

        final DataFactory theSelectedDataFactory = getSelectedDataSource();

        // Delete data-source from structure panel
        reportDesignerContext.getActiveContext().getSelectionModel().setSelectedElements(new Object[]{theSelectedDataFactory});

        final DeleteAction deleteAction = new DeleteAction();
        deleteAction.setReportDesignerContext(reportDesignerContext);
        deleteAction.actionPerformed(new ActionEvent(this, ActionEvent.ACTION_PERFORMED, ""));

        // Delete data-source from the Select data-source dialog
        availableDataSourcesModel.remove(theSelectedDataFactory);
      }
    }
View Full Code Here

Examples of org.platformlayer.core.model.DeleteAction

      ConfigureAction action = new ConfigureAction();
      return operations.enqueueOperation(action, auth, itemKey);
    }

    case DELETE_REQUESTED: {
      DeleteAction action = new DeleteAction();
      return operations.enqueueOperation(action, auth, itemKey);
    }

    default: {
      throw new IllegalStateException("Unknown state for action: " + newState);
View Full Code Here

Examples of slash.navigation.converter.gui.actions.DeleteAction

        clipboardInteractor.watchClipboard();
        actionManager.register("undo", new UndoAction());
        actionManager.register("redo", new RedoAction());
        actionManager.register("copy", new CopyAction(getPositionsView(), getPositionsModel(), clipboardInteractor));
        actionManager.register("cut", new CutAction(getPositionsView(), getPositionsModel(), clipboardInteractor));
        actionManager.register("delete", new DeleteAction(getPositionsView(), getPositionsModel()));
        actionManager.register("new-position", new AddPositionAction(getPositionsView(), getPositionsModel(), getPositionsSelectionModel()));
        actionManager.register("new-file", new NewFileAction(this));
        actionManager.register("open", new OpenAction(this));
        actionManager.register("paste", new PasteAction(getPositionsView(), getPositionsModel(), clipboardInteractor));
        actionManager.register("save", new SaveAction(this));
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.