Package org.drools.guvnor.client.explorer

Examples of org.drools.guvnor.client.explorer.AssetEditorPlace


    @UiHandler("openSelectedButton")
    void openSelected(ClickEvent e) {
        Set<SnapshotComparisonPageRow> selectedSet = selectionModel.getSelectedSet();
        for ( SnapshotComparisonPageRow selected : selectedSet ) {
            clientFactory.getPlaceController().goTo( new AssetEditorPlace( selected.getDiff().rightUuid ));
        }
    }
View Full Code Here


    /**
     * closes itself
     */
    private void close() {
        eventBus.fireEvent( new ClosePlaceEvent( new AssetEditorPlace( asset.uuid ) ) );
    }
View Full Code Here

    }

    private void closeAndReopen(String newAssetUUID) {
        close();

        clientFactory.getPlaceController().goTo( new AssetEditorPlace( newAssetUUID ) );
    }
View Full Code Here

    private void completedCopying(String name,
                                  String pkg,
                                  String newAssetUUID) {
        Window.alert( constants.CreatedANewItemSuccess( name,
                pkg ) );
        clientFactory.getPlaceController().goTo( new AssetEditorPlace( newAssetUUID ) );
    }   
View Full Code Here

    /**
     * closes itself
     */
    private void close() {
        eventBus.fireEvent( new ClosePlaceEvent( new AssetEditorPlace( asset.uuid ) ) );
    }
View Full Code Here

    private void completedCopying(String name,
                                  String pkg,
                                  String newAssetUUID) {
        Window.alert( constants.CreatedANewItemSuccess( name,
                pkg ) );
        clientFactory.getPlaceController().goTo( new AssetEditorPlace( newAssetUUID ) );
    }   
View Full Code Here

        pop.show();
    }

    private void close() {
        eventBus.fireEvent(new ClosePlaceEvent(new AssetEditorPlace(uuid)));
    }
View Full Code Here

TOP

Related Classes of org.drools.guvnor.client.explorer.AssetEditorPlace

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.