JAL-1894 update year/version in copyright
[jalview.git] / src / jalview / schemes / ScoreMatrix.java
index a0e632f..20b4b77 100644 (file)
@@ -1,6 +1,6 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
- * Copyright (C) 2014 The Jalview Authors
+ * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9.0b1)
+ * Copyright (C) 2015 The Jalview Authors
  * 
  * This file is part of Jalview.
  * 
@@ -23,10 +23,11 @@ package jalview.schemes;
 import jalview.analysis.scoremodels.PairwiseSeqScoreModel;
 import jalview.api.analysis.ScoreModelI;
 
-public class ScoreMatrix extends PairwiseSeqScoreModel implements ScoreModelI
+public class ScoreMatrix extends PairwiseSeqScoreModel implements
+        ScoreModelI
 {
   String name;
-  
+
   @Override
   public String getName()
   {
@@ -42,11 +43,15 @@ public class ScoreMatrix extends PairwiseSeqScoreModel implements ScoreModelI
    * 0 for Protein Score matrix. 1 for dna score matrix
    */
   int type;
+
   /**
    * 
-   * @param name Unique, human readable name for the matrix
-   * @param matrix Pairwise scores indexed according to appropriate symbol alphabet
-   * @param type 0 for Protein, 1 for NA
+   * @param name
+   *          Unique, human readable name for the matrix
+   * @param matrix
+   *          Pairwise scores indexed according to appropriate symbol alphabet
+   * @param type
+   *          0 for Protein, 1 for NA
    */
   ScoreMatrix(String name, int[][] matrix, int type)
   {
@@ -60,6 +65,7 @@ public class ScoreMatrix extends PairwiseSeqScoreModel implements ScoreModelI
   {
     return type == 1;
   }
+
   @Override
   public boolean isProtein()
   {