RefreshOperationContext.java
Go to the documentation of this file.00001 package edu.rice.cs.hpc.traceviewer.operation;
00002
00003 import org.eclipse.core.commands.operations.IUndoContext;
00004
00005 public class RefreshOperationContext implements IUndoContext {
00006
00007 private final static String label = "RefreshOperationContext";
00008
00009 @Override
00010 public String getLabel() {
00011 return label;
00012 }
00013
00014 @Override
00015 public boolean matches(IUndoContext context) {
00016 return context.getLabel()==label;
00017 }
00018
00019 }