Examples of changed()


Examples of org.eclipse.ui.texteditor.IDocumentProvider.changed()

                    MessageDialog.openError( shell, title, msg );
                }
            }
            finally
            {
                provider.changed( newInput );
                if ( success )
                {
                    setInput( newInput );
                }
            }
View Full Code Here

Examples of org.eclipse.ui.texteditor.IDocumentProvider.changed()

                    MessageDialog.openError( shell, title, msg );
                }
            }
            finally
            {
                provider.changed( newInput );
                if ( success )
                {
                    setInput( newInput );
                }
            }
View Full Code Here

Examples of org.exist.util.ProgressIndicator.changed()

                    }
                    //Write (variable) length of node IDs + frequency + offsets
                    os.writeFixedInt(lenOffset, os.position() - lenOffset - LENGTH_NODE_IDS_FREQ_OFFSETS);
                    flushWord(currentSection, collectionId, token, os.data());
                    progress.setValue(count);
                    if (progress.changed()) {
                        setChanged();
                        notifyObservers(progress);
                    }
                }
                //TOUNDERSTAND : is this a flush ?
View Full Code Here

Examples of org.geoserver.importer.Importer.changed()

                                   //check the import for actual things to do
                                   boolean proceed = !imp.getTasks().isEmpty();
                                 
                                   if (proceed) {
                                       imp.setArchive(false);
                                       importer.changed(imp);
          
                                       PageParameters pp = new PageParameters();
                                       pp.put("id", imp.getId());
          
                                       setResponsePage(ImportPage.class, pp);
View Full Code Here

Examples of org.hyperic.sigar.FileInfo.changed()

                }
            }

            tmp.setReadOnly();
            boolean changed = info.changed();
            traceln(info.diff());
            assertTrue(info.getPreviousInfo().getSize() != info.getSize());
            assertTrue(changed);
        } catch (SigarNotImplementedException e) {
            //XXX win32
View Full Code Here

Examples of org.jamesii.model.ca.grid.ICAGrid.changed()

    gridFrom = gridTo;
    gridTo = temp;

    if (counter >= writeBackInterval) {
      counter = 0;
      model.changed();
      changed();

      model.getState().changed();
      model.getState().isChangedRR();
    }
View Full Code Here

Examples of org.jamesii.model.carules.ICARulesModel.changed()

      // now set the new state (to the ORIGINAL grid, not the original one)
      grid.setState(next, cell.getPosition());

    }
    m.changed();

    // advance the time
    time += 1;
    changed();
View Full Code Here

Examples of org.jooq.test.data.Table1Record.changed()

        assertEquals(1, r2.size());
        assertEquals(Table1.FIELD_ID1, r2.field(0));
        assertEquals(1, (int) r2.value1());
        assertTrue(r2.changed());

        r1.changed(false);
        r2 = r1.into(Table1.FIELD_ID1);
        assertEquals(1, r2.size());
        assertEquals(Table1.FIELD_ID1, r2.field(0));
        assertEquals(1, (int) r2.value1());
        assertFalse(r2.changed());
View Full Code Here

Examples of org.locationtech.udig.project.internal.render.impl.RendererCreatorImpl.changed()

   
        RendererCreatorImpl creator = MapTests.createRendererCreator(layer.getMapInternal());
   
        NotificationImpl notificationImpl = new ENotificationImpl((InternalEObject) layer.getContextModel(), Notification.ADD,
                ProjectPackage.CONTEXT_MODEL__LAYERS, null, layer);
        creator.changed(notificationImpl);
      
        SortedSet<Layer> layers = creator.getLayers();
       
        assertEquals(2, layers.size());
       
View Full Code Here

Examples of org.locationtech.udig.project.internal.render.impl.RendererCreatorImpl.changed()

       
        ContextModelListener listener = new ContextModelListener();
        layer.getContextModel().eAdapters().add(listener);
       
        layer.getMapInternal().getLayersInternal().remove(layer);
        creator.changed(listener.lastNotification);
      

        layers = creator.getLayers();
       
        assertEquals(0, layers.size());
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.