Formatted source
[jalview.git] / src / jalview / appletgui / CutAndPasteTransfer.java
index 22cfd67..ed89001 100755 (executable)
@@ -1,43 +1,44 @@
 /*\r
-* Jalview - A Sequence Alignment Editor and Viewer\r
-* Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle\r
-*\r
-* This program is free software; you can redistribute it and/or\r
-* modify it under the terms of the GNU General Public License\r
-* as published by the Free Software Foundation; either version 2\r
-* of the License, or (at your option) any later version.\r
-*\r
-* This program is distributed in the hope that it will be useful,\r
-* but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
-* GNU General Public License for more details.\r
-*\r
-* You should have received a copy of the GNU General Public License\r
-* along with this program; if not, write to the Free Software\r
-* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA\r
-*/\r
+ * Jalview - A Sequence Alignment Editor and Viewer\r
+ * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle\r
+ *\r
+ * This program is free software; you can redistribute it and/or\r
+ * modify it under the terms of the GNU General Public License\r
+ * as published by the Free Software Foundation; either version 2\r
+ * of the License, or (at your option) any later version.\r
+ *\r
+ * This program is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program; if not, write to the Free Software\r
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA\r
+ */\r
 \r
 package jalview.appletgui;\r
 \r
-import jalview.jbappletgui.GCutAndPasteTransfer;\r
-import jalview.datamodel.*;\r
-import jalview.io.*;\r
 import java.awt.*;\r
 import java.awt.event.*;\r
 \r
-public class CutAndPasteTransfer extends GCutAndPasteTransfer\r
+import jalview.datamodel.*;\r
+import jalview.io.*;\r
+import jalview.jbappletgui.*;\r
+\r
+public class CutAndPasteTransfer\r
+    extends GCutAndPasteTransfer\r
 {\r
   public CutAndPasteTransfer(boolean forImport)\r
   {\r
     super();\r
 \r
-    if(!forImport)\r
+    if (!forImport)\r
     {\r
       buttonPanel.setVisible(false);\r
     }\r
   }\r
 \r
-\r
   public String getText()\r
   {\r
     return textarea.getText();\r
@@ -48,7 +49,6 @@ public class CutAndPasteTransfer extends GCutAndPasteTransfer
     textarea.setText(text);\r
   }\r
 \r
-\r
   protected void ok_actionPerformed(ActionEvent e)\r
   {\r
     String text = getText();\r
@@ -68,14 +68,12 @@ public class CutAndPasteTransfer extends GCutAndPasteTransfer
 \r
     Frame frame = (Frame)this.getParent();\r
     frame.setVisible(false);\r
-   }\r
-\r
-   protected void cancel_actionPerformed(ActionEvent e) {\r
-     Frame frame = (Frame)this.getParent();\r
-     frame.setVisible(false);\r
-   }\r
-\r
-\r
+  }\r
 \r
+  protected void cancel_actionPerformed(ActionEvent e)\r
+  {\r
+    Frame frame = (Frame)this.getParent();\r
+    frame.setVisible(false);\r
+  }\r
 \r
 }\r