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

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


    {
        openLocalFile = new OpenLocalFileAction();
        createANewSchema = new CreateANewSchemaAction();
        removeSchema = new RemoveSchemaAction();
        createANewObjectClass = new CreateANewObjectClassAction();
        createANewAttributeType = new CreateANewAttributeTypeAction();
        deleteAction = new DeleteAction();
        collapseAll = new CollapseAllAction( view.getViewer() );
        linkWithEditor = new LinkWithEditorSchemasView( view );
        openSchemaSourceCode = new OpenSchemaSourceCode();
        save = new SaveAction();
View Full Code Here


     */
    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$
        SaveAction saveAction = new SaveAction();
        SaveAsAction saveAsAction = new SaveAsAction();
View Full Code Here

        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() );
        toolbar.add( new Separator() );
        toolbar.add( new SortPoolManagerAction( PlatformUI.getWorkbench().getActiveWorkbenchWindow(),
            SortPoolManagerAction.SortType.alphabetical, Messages.getString( "PoolManager.Sort_alphabetically" ) ) ); //$NON-NLS-1$
        toolbar.add( new SortPoolManagerAction( PlatformUI.getWorkbench().getActiveWorkbenchWindow(),
View Full Code Here

    {
        openLocalFile = new OpenLocalFileAction();
        createANewSchema = new CreateANewSchemaAction();
        removeSchema = new RemoveSchemaAction();
        createANewObjectClass = new CreateANewObjectClassAction();
        createANewAttributeType = new CreateANewAttributeTypeAction();
        deleteAction = new DeleteAction();
        collapseAll = new CollapseAllAction( view.getViewer() );
        linkWithEditor = new LinkWithEditorSchemasView( view );
        openSchemaSourceCode = new OpenSchemaSourceCode();
        save = new SaveAction();
View Full Code Here

TOP

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

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.