Skip to content

Commit

Permalink
[NONE] Add visibility to interface operations.
Browse files Browse the repository at this point in the history
  • Loading branch information
nyssen committed Nov 10, 2014
1 parent c673e2d commit cd18379
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

import java.util.Map;

import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.commands.operations.IOperationHistory;
import org.eclipse.core.commands.operations.IUndoContext;
import org.eclipse.core.commands.operations.IUndoableOperation;
Expand Down Expand Up @@ -46,7 +45,9 @@
*/
public interface IDomain<VR> extends IAdaptable, IActivatable {

void closeTransaction();
public void closeTransaction();

public void execute(IUndoableOperation operation);

/**
* Returns the {@link IOperationHistory} that is used by this domain.
Expand Down Expand Up @@ -86,8 +87,6 @@ public interface IDomain<VR> extends IAdaptable, IActivatable {
*/
public Map<AdapterKey<? extends IViewer<VR>>, IViewer<VR>> getViewers();

void openTransaction();

void execute(IUndoableOperation operation);
public void openTransaction();

}

0 comments on commit cd18379

Please sign in to comment.