Fixed up code, made it prettier, it now follows the stylguide better and is more readable.


git-svn-id: https://robotics.mvla.net/svn/frc971/2013/trunk/src@4182 f308d9b7-e957-4cde-b6ac-9a88185e7312
diff --git a/971cv/src/org/spartanrobotics/ImageGetter.java b/971cv/src/org/spartanrobotics/ImageGetter.java
new file mode 100644
index 0000000..06a1534
--- /dev/null
+++ b/971cv/src/org/spartanrobotics/ImageGetter.java
@@ -0,0 +1,22 @@
+/**
+ * 
+ */
+package org.spartanrobotics;
+
+import edu.wpi.first.wpijavacv.WPIColorImage;
+
+/**
+ * @author daniel
+ *
+ */
+
+/** Interface for program image contributors. */
+public interface ImageGetter {
+	
+	/** Gets the next image from the source/ */
+	WPIColorImage getFrame();
+	
+	/** Gets the name of the image source. */
+	String getName();
+	
+}