Package org.apache.directory.ldapstudio.schemas.controller.actions

Examples of org.apache.directory.ldapstudio.schemas.controller.actions.CreateANewSchemaAction


     * Initializes the Actions.
     */
    private void initActions()
    {
        openLocalFile = new OpenLocalFileAction();
        createANewSchema = new CreateANewSchemaAction();
        removeSchema = new RemoveSchemaAction();
        createANewObjectClass = new CreateANewObjectClassAction();
        createANewAttributeType = new CreateANewAttributeTypeAction();
        deleteAction = new DeleteAction();
        collapseAll = new CollapseAllAction( view.getViewer() );
View Full Code Here


    /* (non-Javadoc)
     * @see org.eclipse.jface.action.IMenuListener#menuAboutToShow(org.eclipse.jface.action.IMenuManager)
     */
    public void menuAboutToShow( IMenuManager manager )
    {
        CreateANewSchemaAction createANewSchemaAction = new CreateANewSchemaAction();
        CreateANewObjectClassAction createANewObjectClassAction = new CreateANewObjectClassAction();
        CreateANewAttributeTypeAction createANewAttributeTypeAction = new CreateANewAttributeTypeAction();
        DeleteAction deleteAction = new DeleteAction();
        OpenSchemaSourceCode openSchemaSourceCode = new OpenSchemaSourceCode( PlatformUI.getWorkbench()
            .getActiveWorkbenchWindow(), "View source code" ); //$NON-NLS-1$
View Full Code Here

    {
        this.parent = parent;
        initViewer();
        IToolBarManager toolbar = getViewSite().getActionBars().getToolBarManager();
        toolbar.add( new OpenLocalFileAction() );
        toolbar.add( new CreateANewSchemaAction() );
        toolbar.add( new RemoveSchemaAction() );
        toolbar.add( new Separator() );
        toolbar.add( new CreateANewObjectClassAction() );
        toolbar.add( new CreateANewAttributeTypeAction() );
        toolbar.add( new DeleteAction() );
View Full Code Here

     * Initializes the Actions.
     */
    private void initActions()
    {
        openLocalFile = new OpenLocalFileAction();
        createANewSchema = new CreateANewSchemaAction();
        removeSchema = new RemoveSchemaAction();
        createANewObjectClass = new CreateANewObjectClassAction();
        createANewAttributeType = new CreateANewAttributeTypeAction();
        deleteAction = new DeleteAction();
        collapseAll = new CollapseAllAction( view.getViewer() );
View Full Code Here

TOP

Related Classes of org.apache.directory.ldapstudio.schemas.controller.actions.CreateANewSchemaAction

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.