updated version to 2.6.1
[jalview.git] / src / jalview / gui / CutAndPasteTransfer.java
index 6459de4..a59927a 100755 (executable)
@@ -1,20 +1,19 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.4)
- * Copyright (C) 2008 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
+ * Jalview - A Sequence Alignment Editor and Viewer (Version 2.6.1)
+ * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle
  * 
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
+ * This file is part of Jalview.
  * 
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
+ * Jalview is free software: you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License 
+ * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
  * 
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
+ * Jalview is distributed in the hope that it will be useful, but 
+ * WITHOUT ANY WARRANTY; without even the implied warranty 
+ * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
+ * PURPOSE.  See the GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
  */
 package jalview.gui;
 
@@ -78,7 +77,7 @@ public class CutAndPasteTransfer extends GCutAndPasteTransfer
    * DOCUMENT ME!
    * 
    * @param text
-   *                DOCUMENT ME!
+   *          DOCUMENT ME!
    */
   public void setText(String text)
   {
@@ -92,8 +91,8 @@ public class CutAndPasteTransfer extends GCutAndPasteTransfer
 
   public void save_actionPerformed(ActionEvent e)
   {
-    JalviewFileChooser chooser = new JalviewFileChooser(jalview.bin.Cache
-            .getProperty("LAST_DIRECTORY"));
+    JalviewFileChooser chooser = new JalviewFileChooser(
+            jalview.bin.Cache.getProperty("LAST_DIRECTORY"));
 
     chooser.setAcceptAllFileFilterUsed(false);
     chooser.setFileView(new JalviewFileView());
@@ -123,7 +122,7 @@ public class CutAndPasteTransfer extends GCutAndPasteTransfer
    * DOCUMENT ME!
    * 
    * @param e
-   *                DOCUMENT ME!
+   *          DOCUMENT ME!
    */
   public void copyItem_actionPerformed(ActionEvent e)
   {
@@ -136,7 +135,7 @@ public class CutAndPasteTransfer extends GCutAndPasteTransfer
    * DOCUMENT ME!
    * 
    * @param e
-   *                DOCUMENT ME!
+   *          DOCUMENT ME!
    */
   public void pasteMenu_actionPerformed(ActionEvent e)
   {
@@ -161,11 +160,12 @@ public class CutAndPasteTransfer extends GCutAndPasteTransfer
    * DOCUMENT ME!
    * 
    * @param e
-   *                DOCUMENT ME!
+   *          DOCUMENT ME!
    */
   public void ok_actionPerformed(ActionEvent e)
   {
     String format = new IdentifyFile().Identify(getText(), "Paste");
+    // TODO: identify feature, annotation or tree file and parse appropriately.
     Alignment al = null;
 
     if (FormatAdapter.isValidFormat(format))
@@ -217,7 +217,7 @@ public class CutAndPasteTransfer extends GCutAndPasteTransfer
    * DOCUMENT ME!
    * 
    * @param e
-   *                DOCUMENT ME!
+   *          DOCUMENT ME!
    */
   public void cancel_actionPerformed(ActionEvent e)
   {