Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 51e8e5d17522823bcfb4a904c801a49b843a99da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.eclipse.emf.cdo.internal.ui.actions;

import org.eclipse.core.runtime.IProgressMonitor;

/**
 * @author Eike Stepper
 */
public class ExportResourceAction extends EditingDomainAction
{
  public ExportResourceAction()
  {
    super("Export Resource...");
  }

  @Override
  protected void doRun(IProgressMonitor monitor) throws Exception
  {
  }
}

Back to the top