MergeDatabaseFlat.java
Go to the documentation of this file.00001 package edu.rice.cs.hpc.viewer.actions;
00002
00003 import org.eclipse.core.commands.ExecutionEvent;
00004 import org.eclipse.core.commands.ExecutionException;
00005
00006 import edu.rice.cs.hpc.data.experiment.merge.ExperimentMerger;
00007
00008 public class MergeDatabaseFlat extends MergeDatabase {
00009
00010 @Override
00011 public Object execute(ExecutionEvent event) throws ExecutionException {
00012
00013 return super.execute(event, ExperimentMerger.MergeType.FLAT);
00014 }
00015
00016 }