Skip to content

Commit

Permalink
make ExportPlot non-abstract
Browse files Browse the repository at this point in the history
  • Loading branch information
jjallaire committed May 25, 2011
1 parent 67655f2 commit 27e0c32
Showing 1 changed file with 5 additions and 3 deletions.
Expand Up @@ -14,7 +14,7 @@

import com.google.gwt.user.client.ui.TextBox;

public abstract class ExportPlot
public class ExportPlot
{
public void savePlotAsImage(GlobalDisplay globalDisplay,
PlotsServerOperations server,
Expand Down Expand Up @@ -47,10 +47,12 @@ public void savePlotAsPdf(GlobalDisplay globalDisplay,
}


public abstract void copyPlotToClipboard(
public void copyPlotToClipboard(
PlotsServerOperations server,
ExportPlotOptions options,
OperationWithInput<ExportPlotOptions> onClose);
OperationWithInput<ExportPlotOptions> onClose)
{
}


// utility for calculating display of directory
Expand Down

0 comments on commit 27e0c32

Please sign in to comment.