Small style stuff
[zxing.git] / core / src / com / google / zxing / qrcode / detector / FinderPatternInfo.java
index 77716d4..3c34010 100644 (file)
@@ -20,29 +20,29 @@ package com.google.zxing.qrcode.detector;
  * <p>Encapsulates information about finder patterns in an image, including the location of
  * the three finder patterns, and their estimated module size.</p>
  *
- * @author srowen@google.com (Sean Owen)
+ * @author Sean Owen
  */
-final class FinderPatternInfo {
+public final class FinderPatternInfo {
 
   private final FinderPattern bottomLeft;
   private final FinderPattern topLeft;
   private final FinderPattern topRight;
 
-  FinderPatternInfo(FinderPattern[] patternCenters) {
+  public FinderPatternInfo(FinderPattern[] patternCenters) {
     this.bottomLeft = patternCenters[0];
     this.topLeft = patternCenters[1];
     this.topRight = patternCenters[2];
   }
 
-  FinderPattern getBottomLeft() {
+  public FinderPattern getBottomLeft() {
     return bottomLeft;
   }
 
-  FinderPattern getTopLeft() {
+  public FinderPattern getTopLeft() {
     return topLeft;
   }
 
-  FinderPattern getTopRight() {
+  public FinderPattern getTopRight() {
     return topRight;
   }