Examples of IEntry


Examples of org.apache.directory.studio.ldapbrowser.core.model.IEntry

    /**
     * Reload entry.
     */
    private void reloadEntry()
    {
        IEntry entry = EntryPropertyPage.getEntry( getElement() );
        entry.setInitOperationalAttributes( true );
        InitializeChildrenRunnable runnable1 = new InitializeChildrenRunnable( false, entry );
        InitializeAttributesRunnable runnable2 = new InitializeAttributesRunnable( entry );
        RunnableContextRunner.execute( runnable1, null, true );
        RunnableContextRunner.execute( runnable2, null, true );
        entryUpdated( entry );
View Full Code Here

Examples of org.apache.directory.studio.ldapbrowser.core.model.IEntry

     *
     * @return the entry
     */
    static IEntry getEntry( Object element )
    {
        IEntry entry = null;
        if ( element instanceof IAdaptable )
        {
            entry = ( IEntry ) ( ( IAdaptable ) element ).getAdapter( IEntry.class );
        }
        return entry;
View Full Code Here

Examples of org.apache.directory.studio.ldapbrowser.core.model.IEntry

    /**
     * {@inheritDoc}
     */
    public void run()
    {
        IEntry entry = getSelectedValues().length > 0 ? getSelectedValues()[0].getAttribute().getEntry()
            : getSelectedAttributes().length > 0 ? getSelectedAttributes()[0].getEntry()
                : ( getInput() instanceof IEntry ) ? ( IEntry ) getInput() : null;
        if ( entry != null )
        {
            // disable action handlers
View Full Code Here

Examples of org.apache.directory.studio.ldapbrowser.core.model.IEntry

        if ( eei != null )
        {
            memento.putString( "EXTENSION", eei.getExtension().getId() ); //$NON-NLS-1$
            if ( eei.getEntryInput() != null )
            {
                IEntry entry = eei.getEntryInput();
                memento.putString( "TYPE", "IEntry" ); //$NON-NLS-1$ //$NON-NLS-2$
                memento.putString( "DN", entry.getDn().getUpName() ); //$NON-NLS-1$
                memento.putString( "CONNECTION", entry.getBrowserConnection().getConnection().getId() ); //$NON-NLS-1$
            }
            else if ( eei.getSearchResultInput() != null )
            {
                ISearchResult searchResult = eei.getSearchResultInput();
                memento.putString( "TYPE", "ISearchResult" ); //$NON-NLS-1$ //$NON-NLS-2$
View Full Code Here

Examples of sil.spatialindex.IEntry

          n = (Node) first.m_pEntry;
          v.visitNode((INode) n);

          for (int cChild = 0; cChild < n.m_children; cChild++)
          {
            IEntry e;

            if (n.m_level == 0)
            {
              e = new Data(n.m_pData[cChild], n.m_pMBR[cChild], n.m_pIdentifier[cChild]);
            }
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.