FilterSave.java
Go to the documentation of this file.00001 package edu.rice.cs.hpc.filter.action;
00002
00003 import org.eclipse.core.commands.AbstractHandler;
00004 import org.eclipse.core.commands.ExecutionEvent;
00005 import org.eclipse.core.commands.ExecutionException;
00006
00007 import edu.rice.cs.hpc.filter.service.FilterMap;
00008
00009 public class FilterSave extends AbstractHandler {
00010
00011 @Override
00012 public Object execute(ExecutionEvent event) throws ExecutionException {
00013 FilterMap map = FilterMap.getInstance();
00014 map.save();
00015 return null;
00016 }
00017
00018 }