Uses of Interface
org.eclipse.emf.emfstore.client.ESLocalProject

Packages that use ESLocalProject
org.eclipse.emf.emfstore.client   
org.eclipse.emf.emfstore.client.callbacks   
org.eclipse.emf.emfstore.client.handler   
org.eclipse.emf.emfstore.client.observer   
org.eclipse.emf.emfstore.client.sessionprovider   
org.eclipse.emf.emfstore.client.ui   
org.eclipse.emf.emfstore.internal.client.model   
org.eclipse.emf.emfstore.internal.client.model.impl   
org.eclipse.emf.emfstore.internal.client.model.impl.api   
org.eclipse.emf.emfstore.internal.client.model.util   
org.eclipse.emf.emfstore.internal.client.observers   
org.eclipse.emf.emfstore.internal.client.ui.controller   
org.eclipse.emf.emfstore.internal.client.ui.decorators   
org.eclipse.emf.emfstore.internal.client.ui.dialogs   
org.eclipse.emf.emfstore.internal.client.ui.handlers   
org.eclipse.emf.emfstore.internal.client.ui.views.historybrowserview   
 

Uses of ESLocalProject in org.eclipse.emf.emfstore.client
 

Methods in org.eclipse.emf.emfstore.client that return ESLocalProject
 ESLocalProject ESRemoteProject.checkout(String name, ESUsersession usersession, ESPrimaryVersionSpec versionSpec, org.eclipse.core.runtime.IProgressMonitor monitor)
           Checkouts the project in the given version into the local workspace.
 ESLocalProject ESRemoteProject.checkout(String name, ESUsersession usersession, org.eclipse.core.runtime.IProgressMonitor monitor)
           Checkouts the project in the HEAD version into the local workspace.
 ESLocalProject ESRemoteProject.checkout(String name, org.eclipse.core.runtime.IProgressMonitor monitor)
           Checkouts the project in its HEAD version into the local workspace.
 ESLocalProject ESWorkspace.createLocalProject(String projectName)
          Creates a new local project that is not shared with the server yet.
 ESLocalProject ESRemoteProject.fetch(String name, ESUsersession session, ESPrimaryVersionSpec versionSpec, org.eclipse.core.runtime.IProgressMonitor monitor)
           
 ESLocalProject ESWorkspace.getLocalProject(org.eclipse.emf.ecore.EObject modelElement)
          Returns the ESLocalProject the given model element is contained in.
 

Methods in org.eclipse.emf.emfstore.client that return types with arguments of type ESLocalProject
 List<ESLocalProject> ESWorkspace.getLocalProjects()
          Returns all local projects.
 

Uses of ESLocalProject in org.eclipse.emf.emfstore.client.callbacks
 

Methods in org.eclipse.emf.emfstore.client.callbacks with parameters of type ESLocalProject
 boolean ESCommitCallback.baseVersionOutOfDate(ESLocalProject project, org.eclipse.core.runtime.IProgressMonitor monitor)
           Called when the project that should be updated is out of date.
 boolean ESCommitCallback.inspectChanges(ESLocalProject project, ESChangePackage changePackage, ESModelElementIdToEObjectMapping idToEObjectMapping)
           Called right before the actual commit is performed.
 boolean ESUpdateCallback.inspectChanges(ESLocalProject project, List<ESChangePackage> changes, ESModelElementIdToEObjectMapping idToEObjectMapping)
          Called right before the changes get applied upon the project space.
 void ESCommitCallback.noLocalChanges(ESLocalProject project)
          Called when there are no changes on the given project space.
 

Uses of ESLocalProject in org.eclipse.emf.emfstore.client.handler
 

Methods in org.eclipse.emf.emfstore.client.handler with parameters of type ESLocalProject
 boolean ESChecksumErrorHandler.execute(ESLocalProject localProject, ESPrimaryVersionSpec versionSpec, org.eclipse.core.runtime.IProgressMonitor monitor)
          Executes the error handler.
 

Uses of ESLocalProject in org.eclipse.emf.emfstore.client.observer
 

Methods in org.eclipse.emf.emfstore.client.observer with parameters of type ESLocalProject
 void ESCheckoutObserver.checkoutDone(ESLocalProject project)
          Called on checkout.
 void ESCommitObserver.commitCompleted(ESLocalProject project, ESPrimaryVersionSpec newRevision, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called after the commit is completed.
 boolean ESCommitObserver.inspectChanges(ESLocalProject project, ESChangePackage changePackage, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called before the commit proceeds.
 boolean ESUpdateObserver.inspectChanges(ESLocalProject project, List<ESChangePackage> changePackages, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called to notify the observer about the changes that will be merged into the project space.
 void ESMergeObserver.postApplyMergedChanges(ESLocalProject project, ESChangePackage changePackage)
          Called after the merge result has been re-applied, i.e.
 void ESMergeObserver.postApplyTheirChanges(ESLocalProject project, List<ESChangePackage> theirChangePackages)
          Called after incoming changes have been applied upon the ESLocalProject and before our changes are re-applied.
 void ESMergeObserver.postRevertMyChanges(ESLocalProject project)
          Called after local changes have been reverted and before incoming changes are applied.
 void ESMergeObserver.preRevertMyChanges(ESLocalProject project, ESChangePackage changePackage)
          Called before all local changes are reverted.
 void ESSaveStateChangedObserver.saveStateChanged(ESLocalProject localProject, boolean hasUnsavedChangesNow)
          Notify the listener about a save state change.
 void ESShareObserver.shareDone(ESLocalProject localProject)
          Called when the share of the passed ESLocalProject completed successfully.
 void ESUpdateObserver.updateCompleted(ESLocalProject project, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called after the changes have been applied to the project and the update is completed.
 

Uses of ESLocalProject in org.eclipse.emf.emfstore.client.sessionprovider
 

Methods in org.eclipse.emf.emfstore.client.sessionprovider that return ESLocalProject
 ESLocalProject ESServerCall.getLocalProject()
          Returns the ESLocalProject this server call is associated with.
 

Uses of ESLocalProject in org.eclipse.emf.emfstore.client.ui
 

Methods in org.eclipse.emf.emfstore.client.ui that return ESLocalProject
 ESLocalProject ESUIControllerFactory.createLocalProject(org.eclipse.swt.widgets.Shell shell)
          Create a new local project.
 ESLocalProject ESUIControllerFactory.createLocalProject(org.eclipse.swt.widgets.Shell shell, String name)
          Create a new local project.
 

Methods in org.eclipse.emf.emfstore.client.ui with parameters of type ESLocalProject
 ESPrimaryVersionSpec ESUIControllerFactory.commitProject(org.eclipse.swt.widgets.Shell shell, ESLocalProject project)
          Commits the changes of a project.
 void ESUIControllerFactory.deleteLocalProject(org.eclipse.swt.widgets.Shell shell, ESLocalProject project)
          Deletes a local project.
 void ESUIControllerFactory.mergeBranch(org.eclipse.swt.widgets.Shell shell, ESLocalProject project)
          Merge a branch into the project.
 void ESUIControllerFactory.shareProject(org.eclipse.swt.widgets.Shell shell, ESLocalProject project)
          Share a project.
 void ESUIControllerFactory.showHistoryView(org.eclipse.swt.widgets.Shell shell, ESLocalProject project)
          Display the history view.
 ESPrimaryVersionSpec ESUIControllerFactory.updateProject(org.eclipse.swt.widgets.Shell shell, ESLocalProject project)
          Update a project.
 ESPrimaryVersionSpec ESUIControllerFactory.updateProject(org.eclipse.swt.widgets.Shell shell, ESLocalProject project, ESVersionSpec version)
          Update a project.
 ESPrimaryVersionSpec ESUIControllerFactory.updateProjectToVersion(org.eclipse.swt.widgets.Shell shell, ESLocalProject project)
          Update a project to a specific version.
 

Uses of ESLocalProject in org.eclipse.emf.emfstore.internal.client.model
 

Methods in org.eclipse.emf.emfstore.internal.client.model with parameters of type ESLocalProject
 void ESWorkspaceProviderImpl.checkoutDone(ESLocalProject project)
          Called on checkout.
 void ESWorkspaceProviderImpl.commitCompleted(ESLocalProject project, ESPrimaryVersionSpec newRevision, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called after the commit is completed.
 boolean ESWorkspaceProviderImpl.inspectChanges(ESLocalProject project, ESChangePackage changePackage, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called before the commit proceeds.
 boolean ESWorkspaceProviderImpl.inspectChanges(ESLocalProject project, List<ESChangePackage> changePackages, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called to notify the observer about the changes that will be merged into the project space.
 void ESWorkspaceProviderImpl.shareDone(ESLocalProject localProject)
          Called when the share of the passed ESLocalProject completed successfully.
 void ESWorkspaceProviderImpl.updateCompleted(ESLocalProject project, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called after the changes have been applied to the project and the update is completed.
 

Uses of ESLocalProject in org.eclipse.emf.emfstore.internal.client.model.impl
 

Methods in org.eclipse.emf.emfstore.internal.client.model.impl with parameters of type ESLocalProject
 void OperationRecorder.commitCompleted(ESLocalProject project, ESPrimaryVersionSpec newRevision, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called after the commit is completed.
 void ResourcePersister.commitCompleted(ESLocalProject project, ESPrimaryVersionSpec newRevision, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called after the commit is completed.
 boolean OperationRecorder.inspectChanges(ESLocalProject project, ESChangePackage changePackage, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called before the commit proceeds.
 boolean ResourcePersister.inspectChanges(ESLocalProject project, ESChangePackage changePackage, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called before the commit proceeds.
 boolean OperationRecorder.inspectChanges(ESLocalProject project, List<ESChangePackage> changePackages, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called to notify the observer about the changes that will be merged into the project space.
 boolean ResourcePersister.inspectChanges(ESLocalProject project, List<ESChangePackage> changePackages, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called to notify the observer about the changes that will be merged into the project space.
 void OperationRecorder.shareDone(ESLocalProject localProject)
          Called when the share of the passed ESLocalProject completed successfully.
 void OperationRecorder.updateCompleted(ESLocalProject project, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called after the changes have been applied to the project and the update is completed.
 void ResourcePersister.updateCompleted(ESLocalProject project, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called after the changes have been applied to the project and the update is completed.
 

Constructors in org.eclipse.emf.emfstore.internal.client.model.impl with parameters of type ESLocalProject
ESLocalProjectSaveStateNotifier(ESLocalProject localProject)
          Default constructor.
ResourcePersister(ESLocalProject localProject)
          Constructor.
 

Uses of ESLocalProject in org.eclipse.emf.emfstore.internal.client.model.impl.api
 

Classes in org.eclipse.emf.emfstore.internal.client.model.impl.api that implement ESLocalProject
 class ESLocalProjectImpl
           Mapping between ESLocalProject and ProjectSpace.
 

Methods in org.eclipse.emf.emfstore.internal.client.model.impl.api that return ESLocalProject
 ESLocalProject ESServerCallImpl.getLocalProject()
          Returns the ESLocalProject this server call is associated with.
 ESLocalProject ESWorkspaceImpl.getLocalProject(org.eclipse.emf.ecore.EObject modelElement)
          Returns the ESLocalProject the given model element is contained in.
 

Methods in org.eclipse.emf.emfstore.internal.client.model.impl.api that return types with arguments of type ESLocalProject
 Set<ESLocalProject> ESWorkspaceImpl.getLocalProjectByName(String projectName)
          Returns all projects whose name matches the supplied project name ignoring any case.
 List<ESLocalProject> ESWorkspaceImpl.getLocalProjects()
          Returns all local projects.
 

Uses of ESLocalProject in org.eclipse.emf.emfstore.internal.client.model.util
 

Methods in org.eclipse.emf.emfstore.internal.client.model.util with parameters of type ESLocalProject
static boolean EMFStoreClientUtil.areEqual(ESLocalProject projectA, ESLocalProject projectB)
          Determine if the contents of two projects are equal.
 

Uses of ESLocalProject in org.eclipse.emf.emfstore.internal.client.observers
 

Methods in org.eclipse.emf.emfstore.internal.client.observers with parameters of type ESLocalProject
 void SimpleOperationObserver.commitCompleted(ESLocalProject localProject, ESPrimaryVersionSpec newRevision, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called after the commit is completed.
 boolean SimpleOperationObserver.inspectChanges(ESLocalProject localProject, ESChangePackage changePackage, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called before the commit proceeds.
 

Uses of ESLocalProject in org.eclipse.emf.emfstore.internal.client.ui.controller
 

Methods in org.eclipse.emf.emfstore.internal.client.ui.controller that return ESLocalProject
 ESLocalProject UIControllerFactoryImpl.createLocalProject(org.eclipse.swt.widgets.Shell shell)
          Create a new local project.
 ESLocalProject UIControllerFactoryImpl.createLocalProject(org.eclipse.swt.widgets.Shell shell, String name)
          Create a new local project.
 ESLocalProject UICreateLocalProjectController.doRun(org.eclipse.core.runtime.IProgressMonitor monitor)
          The actual behavior that should be performed when the MonitoredEMFStoreAction.execute() is called.
Must be implemented by clients.
 ESLocalProject UICheckoutController.doRun(org.eclipse.core.runtime.IProgressMonitor progressMonitor)
          The actual behavior that should be performed when the MonitoredEMFStoreAction.execute() is called.
Must be implemented by clients.
 

Methods in org.eclipse.emf.emfstore.internal.client.ui.controller with parameters of type ESLocalProject
 boolean UICommitProjectController.baseVersionOutOfDate(ESLocalProject projectSpace, org.eclipse.core.runtime.IProgressMonitor progressMonitor)
           Called when the project that should be updated is out of date.
 boolean UICreateBranchController.baseVersionOutOfDate(ESLocalProject projectSpace, org.eclipse.core.runtime.IProgressMonitor progressMonitor)
           Called when the project that should be updated is out of date.
 ESPrimaryVersionSpec UIControllerFactoryImpl.commitProject(org.eclipse.swt.widgets.Shell shell, ESLocalProject project)
          Commits the changes of a project.
 void UIControllerFactoryImpl.deleteLocalProject(org.eclipse.swt.widgets.Shell shell, ESLocalProject project)
          Deletes a local project.
 boolean UICommitProjectController.inspectChanges(ESLocalProject localProject, ESChangePackage changePackage, ESModelElementIdToEObjectMapping idToEObjectMapping)
           Called right before the actual commit is performed.
 boolean UICreateBranchController.inspectChanges(ESLocalProject localProject, ESChangePackage changePackage, ESModelElementIdToEObjectMapping idToEObjectMapping)
           Called right before the actual commit is performed.
 boolean UIUpdateProjectController.inspectChanges(ESLocalProject localProject, List<ESChangePackage> changePackages, ESModelElementIdToEObjectMapping idToEObjectMapping)
          Called right before the changes get applied upon the project space.
 void UIControllerFactoryImpl.mergeBranch(org.eclipse.swt.widgets.Shell shell, ESLocalProject project)
          Merge a branch into the project.
 void UICommitProjectController.noLocalChanges(ESLocalProject localProject)
          Called when there are no changes on the given project space.
 void UICreateBranchController.noLocalChanges(ESLocalProject projectSpace)
          Called when there are no changes on the given project space.
 void UIControllerFactoryImpl.shareProject(org.eclipse.swt.widgets.Shell shell, ESLocalProject project)
          Share a project.
 void UIControllerFactoryImpl.showHistoryView(org.eclipse.swt.widgets.Shell shell, ESLocalProject project)
          Display the history view.
 ESPrimaryVersionSpec UIControllerFactoryImpl.updateProject(org.eclipse.swt.widgets.Shell shell, ESLocalProject project)
          Update a project.
 ESPrimaryVersionSpec UIControllerFactoryImpl.updateProject(org.eclipse.swt.widgets.Shell shell, ESLocalProject project, ESVersionSpec version)
          Update a project.
 ESPrimaryVersionSpec UIControllerFactoryImpl.updateProjectToVersion(org.eclipse.swt.widgets.Shell shell, ESLocalProject project)
          Update a project to a specific version.
 

Constructors in org.eclipse.emf.emfstore.internal.client.ui.controller with parameters of type ESLocalProject
UIAddTagController(org.eclipse.swt.widgets.Shell shell, ESLocalProject localProject, ESHistoryInfo historyInfo)
          Constructor.
UICommitProjectController(org.eclipse.swt.widgets.Shell shell, ESLocalProject localProject)
          Constructor.
UICompareRevisionsController(org.eclipse.swt.widgets.Shell shell, ESPrimaryVersionSpec versionSpec1, ESPrimaryVersionSpec versionSpec2, ESLocalProject localProject)
          Constructor.
UICreateBranchController(org.eclipse.swt.widgets.Shell shell, ESLocalProject projectSpace)
          Constructor.
UICreateBranchController(org.eclipse.swt.widgets.Shell shell, ESLocalProject localProject, BranchVersionSpec branch)
          Constructor.
UIDeleteProjectController(org.eclipse.swt.widgets.Shell shell, ESLocalProject localProject)
          Constructor.
UIMergeController(org.eclipse.swt.widgets.Shell shell, ESLocalProject localProject)
          Default constructor.
UIRevertCommitController(org.eclipse.swt.widgets.Shell shell, ESPrimaryVersionSpec versionSpec, ESLocalProject localProject)
          Constructor.
UIRevertOperationController(org.eclipse.swt.widgets.Shell shell, ESLocalProject localProject)
          Constructor.
UIShareProjectController(org.eclipse.swt.widgets.Shell shell, ESLocalProject localProject)
          Constructor.
UIShareProjectController(org.eclipse.swt.widgets.Shell shell, ESUsersession usersession, ESLocalProject localProject)
          Constructor.
UIShowHistoryController(org.eclipse.swt.widgets.Shell shell, ESLocalProject localProject)
          Constructor.
UIUndoLastOperationController(org.eclipse.swt.widgets.Shell shell, ESLocalProject localProject)
          Constructor.
UIUpdateProjectController(org.eclipse.swt.widgets.Shell shell, ESLocalProject localProject)
          Constructor.
UIUpdateProjectController(org.eclipse.swt.widgets.Shell shell, ESLocalProject localProject, ESVersionSpec versionSpec)
          Constructor.
UIUpdateProjectController(org.eclipse.swt.widgets.Shell shell, ESLocalProject localProject, int maxChanges)
          Constructor.
UIUpdateProjectToVersionController(org.eclipse.swt.widgets.Shell shell, ESLocalProject localProject)
          Constructor.
 

Uses of ESLocalProject in org.eclipse.emf.emfstore.internal.client.ui.decorators
 

Methods in org.eclipse.emf.emfstore.internal.client.ui.decorators with parameters of type ESLocalProject
 void VersionDecorator.commitCompleted(ESLocalProject project, ESPrimaryVersionSpec newRevision, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called after the commit is completed.
 boolean VersionDecorator.inspectChanges(ESLocalProject project, ESChangePackage changePackage, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called before the commit proceeds.
 boolean VersionDecorator.inspectChanges(ESLocalProject project, List<ESChangePackage> changePackages, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called to notify the observer about the changes that will be merged into the project space.
 void VersionDecorator.updateCompleted(ESLocalProject project, org.eclipse.core.runtime.IProgressMonitor monitor)
          Called after the changes have been applied to the project and the update is completed.
 

Uses of ESLocalProject in org.eclipse.emf.emfstore.internal.client.ui.dialogs
 

Constructors in org.eclipse.emf.emfstore.internal.client.ui.dialogs with parameters of type ESLocalProject
UpdateDialog(org.eclipse.swt.widgets.Shell parentShell, ESLocalProject localProject, List<ChangePackage> changes, ModelElementIdToEObjectMapping idToEObjectMapping)
          Constructor.
 

Uses of ESLocalProject in org.eclipse.emf.emfstore.internal.client.ui.handlers
 

Constructors in org.eclipse.emf.emfstore.internal.client.ui.handlers with parameters of type ESLocalProject
CommitProjectHandler(ESLocalProject localProject)
          Constructor.
 

Uses of ESLocalProject in org.eclipse.emf.emfstore.internal.client.ui.views.historybrowserview
 

Methods in org.eclipse.emf.emfstore.internal.client.ui.views.historybrowserview with parameters of type ESLocalProject
 void HistoryBrowserView.setInput(ESLocalProject localProject)
          Sets a ESLocalProject as an input for the view.
 



Copyright © 2015. All Rights Reserved.