Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2007-12-28 13:34:48 +0000
committerEike Stepper2007-12-28 13:34:48 +0000
commitdd116f24542d38b2e4ffbac9592cc6d0aa85be74 (patch)
treef4f9906b1d9b173c6b28a86d99681e1670e19b01
parent130fab8e12f8e151d1ebc1b86917f2f521f007f8 (diff)
downloadcdo-dd116f24542d38b2e4ffbac9592cc6d0aa85be74.tar.gz
cdo-dd116f24542d38b2e4ffbac9592cc6d0aa85be74.tar.xz
cdo-dd116f24542d38b2e4ffbac9592cc6d0aa85be74.zip
Regenerated editor.genmodel with EMF 2.4.0M4
-rw-r--r--plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/internal/ui/editor/CDOEditor.java140
1 files changed, 66 insertions, 74 deletions
diff --git a/plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/internal/ui/editor/CDOEditor.java b/plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/internal/ui/editor/CDOEditor.java
index d63e4f5311..b04f05f9ef 100644
--- a/plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/internal/ui/editor/CDOEditor.java
+++ b/plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/internal/ui/editor/CDOEditor.java
@@ -187,7 +187,8 @@ public class CDOEditor extends MultiPageEditorPart implements IEditingDomainProv
protected AdapterFactoryEditingDomain editingDomain;
/**
- * This is the one view factory used for providing views of the model. <!-- begin-user-doc --> <!-- end-user-doc -->
+ * This is the one adapter factory used for providing views of the model. <!-- begin-user-doc --> <!-- end-user-doc
+ * -->
*
* @generated
*/
@@ -342,7 +343,7 @@ public class CDOEditor extends MultiPageEditorPart implements IEditingDomainProv
protected Collection<Resource> savedResources = new ArrayList<Resource>();
/**
- * Map to store the diagnostic associated with a viewerInput. <!-- begin-user-doc --> <!-- end-user-doc -->
+ * Map to store the diagnostic associated with a resource. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@@ -427,93 +428,90 @@ public class CDOEditor extends MultiPageEditorPart implements IEditingDomainProv
{
public void resourceChanged(IResourceChangeEvent event)
{
- // Only listening to these.
- // if (event.getType() == IResourceDelta.POST_CHANGE)
+ IResourceDelta delta = event.getDelta();
+ try
{
- IResourceDelta delta = event.getDelta();
- try
+ class ResourceDeltaVisitor implements IResourceDeltaVisitor
{
- class ResourceDeltaVisitor implements IResourceDeltaVisitor
- {
- protected ResourceSet resourceSet = editingDomain.getResourceSet();
+ protected ResourceSet resourceSet = editingDomain.getResourceSet();
- protected Collection<Resource> changedResources = new ArrayList<Resource>();
+ protected Collection<Resource> changedResources = new ArrayList<Resource>();
- protected Collection<Resource> removedResources = new ArrayList<Resource>();
+ protected Collection<Resource> removedResources = new ArrayList<Resource>();
- public boolean visit(IResourceDelta delta)
+ public boolean visit(IResourceDelta delta)
+ {
+ if (delta.getResource().getType() == IResource.FILE)
{
- if (delta.getFlags() != IResourceDelta.MARKERS && delta.getResource().getType() == IResource.FILE)
+ if (delta.getKind() == IResourceDelta.REMOVED || delta.getKind() == IResourceDelta.CHANGED
+ && delta.getFlags() != IResourceDelta.MARKERS)
{
- if ((delta.getKind() & (IResourceDelta.CHANGED | IResourceDelta.REMOVED)) != 0)
+ Resource resource = resourceSet.getResource(URI.createURI(delta.getFullPath().toString()), false);
+ if (resource != null)
{
- Resource resource = resourceSet.getResource(URI.createURI(delta.getFullPath().toString()), false);
- if (resource != null)
+ if (delta.getKind() == IResourceDelta.REMOVED)
+ {
+ removedResources.add(resource);
+ }
+ else if (!savedResources.remove(resource))
{
- if ((delta.getKind() & IResourceDelta.REMOVED) != 0)
- {
- removedResources.add(resource);
- }
- else if (!savedResources.remove(resource))
- {
- changedResources.add(resource);
- }
+ changedResources.add(resource);
}
}
}
-
- return true;
}
- public Collection<Resource> getChangedResources()
- {
- return changedResources;
- }
+ return true;
+ }
- public Collection<Resource> getRemovedResources()
- {
- return removedResources;
- }
+ public Collection<Resource> getChangedResources()
+ {
+ return changedResources;
+ }
+
+ public Collection<Resource> getRemovedResources()
+ {
+ return removedResources;
}
+ }
- ResourceDeltaVisitor visitor = new ResourceDeltaVisitor();
- delta.accept(visitor);
+ ResourceDeltaVisitor visitor = new ResourceDeltaVisitor();
+ delta.accept(visitor);
- if (!visitor.getRemovedResources().isEmpty())
+ if (!visitor.getRemovedResources().isEmpty())
+ {
+ removedResources.addAll(visitor.getRemovedResources());
+ if (!isDirty())
{
- removedResources.addAll(visitor.getRemovedResources());
- if (!isDirty())
+ getSite().getShell().getDisplay().asyncExec(new Runnable()
{
- getSite().getShell().getDisplay().asyncExec(new Runnable()
+ public void run()
{
- public void run()
- {
- getSite().getPage().closeEditor(CDOEditor.this, false);
- CDOEditor.this.dispose();
- }
- });
- }
+ getSite().getPage().closeEditor(CDOEditor.this, false);
+ CDOEditor.this.dispose();
+ }
+ });
}
+ }
- if (!visitor.getChangedResources().isEmpty())
+ if (!visitor.getChangedResources().isEmpty())
+ {
+ changedResources.addAll(visitor.getChangedResources());
+ if (getSite().getPage().getActiveEditor() == CDOEditor.this)
{
- changedResources.addAll(visitor.getChangedResources());
- if (getSite().getPage().getActiveEditor() == CDOEditor.this)
+ getSite().getShell().getDisplay().asyncExec(new Runnable()
{
- getSite().getShell().getDisplay().asyncExec(new Runnable()
+ public void run()
{
- public void run()
- {
- handleActivate();
- }
- });
- }
+ handleActivate();
+ }
+ });
}
}
- catch (CoreException exception)
- {
- PluginDelegator.INSTANCE.log(exception);
- }
+ }
+ catch (CoreException exception)
+ {
+ PluginDelegator.INSTANCE.log(exception);
}
}
};
@@ -695,13 +693,11 @@ public class CDOEditor extends MultiPageEditorPart implements IEditingDomainProv
adapterFactory.addAdapterFactory(new ResourceItemProviderAdapterFactory());
adapterFactory.addAdapterFactory(new ReflectiveItemProviderAdapterFactory());
- // Create the command stack that will notify this editor as commands are
- // executed.
+ // Create the command stack that will notify this editor as commands are executed.
//
BasicCommandStack commandStack = new BasicCommandStack();
- // Add a listener to set the most recent command's affected objects to be
- // the selection of the viewer with focus.
+ // Add a listener to set the most recent command's affected objects to be the selection of the viewer with focus.
//
commandStack.addCommandStackListener(new CommandStackListener()
{
@@ -767,8 +763,7 @@ public class CDOEditor extends MultiPageEditorPart implements IEditingDomainProv
if (theSelection != null && !theSelection.isEmpty())
{
// I don't know if this should be run this deferred
- // because we might have to give the editor a chance to process the viewer
- // update events
+ // because we might have to give the editor a chance to process the viewer update events
// and hence to update the views first.
//
//
@@ -776,8 +771,7 @@ public class CDOEditor extends MultiPageEditorPart implements IEditingDomainProv
{
public void run()
{
- // Try to select the items in the current content viewer of the
- // editor.
+ // Try to select the items in the current content viewer of the editor.
//
if (currentViewer != null)
{
@@ -1487,8 +1481,7 @@ public class CDOEditor extends MultiPageEditorPart implements IEditingDomainProv
final Map<Object, Object> saveOptions = new HashMap<Object, Object>();
saveOptions.put(Resource.OPTION_SAVE_ONLY_IF_CHANGED, Resource.OPTION_SAVE_ONLY_IF_CHANGED_MEMORY_BUFFER);
- // Do the work within an operation because this is a long running activity
- // that modifies the workbench.
+ // Do the work within an operation because this is a long running activity that modifies the workbench.
//
WorkspaceModifyOperation operation = new WorkspaceModifyOperation()
{
@@ -1512,7 +1505,6 @@ public class CDOEditor extends MultiPageEditorPart implements IEditingDomainProv
}
catch (Exception exception)
{
- exception.printStackTrace();
resourceToDiagnosticMap.put(resource, analyzeResourceProblems(resource, exception));
}
first = false;
@@ -1633,8 +1625,8 @@ public class CDOEditor extends MultiPageEditorPart implements IEditingDomainProv
}
/**
- * This returns wether something has been persisted to the URI of the specified viewerInput. The implementation uses
- * the URI converter from the editor's viewerInput set to try to open an input stream. <!-- begin-user-doc --> <!--
+ * This returns whether something has been persisted to the URI of the specified resource. The implementation uses the
+ * URI converter from the editor's resource set to try to open an input stream. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @generated

Back to the top