Examples of NeoclipseEvent


Examples of org.neo4j.neoclipse.event.NeoclipseEvent

    /**
     * Notify listeners in/out attributes changed.
     */
    private void notifyListeners()
    {
        NeoclipseEvent event = new NeoclipseEvent( this );
        listeners.notifyListeners( event );
    }
View Full Code Here

Examples of org.neo4j.neoclipse.event.NeoclipseEvent

        else
        {
            currentRelTypes = NeoGraphLabelProviderWrapper.getInstance().getRelationshipTypes();
            currentRelTypes.addAll( fakeTypes );
        }
        refreshListeners.notifyListeners( new NeoclipseEvent( this ) );
        for ( RelationshipType relType : currentRelTypes )
        {
            // only add if it's not already there
            if ( !currentRelTypeCtrls.containsKey( relType ) )
            {
View Full Code Here

Examples of org.neo4j.neoclipse.event.NeoclipseEvent

     */
    public RelationshipType addFakeType( final String name )
    {
        RelationshipType relType = DynamicRelationshipType.withName( name );
        fakeTypes.add( relType );
        notifyTypesListeners( new NeoclipseEvent( relType ) );
        return relType;
    }
View Full Code Here

Examples of org.neo4j.neoclipse.event.NeoclipseEvent

                relTypeCtrl.setIn( in );
                relTypeCtrl.setOut( out );
            }
        }
        filterListeners.setInhibit( false );
        notifyFilterListeners( new NeoclipseEvent( this ) );
    }
View Full Code Here

Examples of org.neo4j.neoclipse.event.NeoclipseEvent

     * @param state set true to display
     */
    public void setShowRelationshipColors( final boolean state )
    {
        getLabelProvider().getViewSettings().setShowRelationshipColors( state );
        relColorChange.notifyListeners( new NeoclipseEvent( Boolean.valueOf( state ) ) );
        refreshPreserveLayout();
    }
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.