[Pixelle-commit] SF.net SVN: pixelle: [93] trunk/pixelle/src/com/mebigfatguy/pixelle/ PixelleCompon
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2008-06-28 01:02:02
|
Revision: 93
http://pixelle.svn.sourceforge.net/pixelle/?rev=93&view=rev
Author: dbrosius
Date: 2008-06-27 18:02:09 -0700 (Fri, 27 Jun 2008)
Log Message:
-----------
javadoc
Modified Paths:
--------------
trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleComponent.java
Modified: trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleComponent.java
===================================================================
--- trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleComponent.java 2008-06-28 01:00:29 UTC (rev 92)
+++ trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleComponent.java 2008-06-28 01:02:09 UTC (rev 93)
@@ -18,12 +18,19 @@
*/
package com.mebigfatguy.pixelle;
-
+/**
+ * an enum that represents a part of a bitmap
+ */
public enum PixelleComponent {
+ /** the red component of a pixel */
RED('r', 0),
+ /** the green component of a pixel */
GREEN('g', 1),
+ /** the blue component of a pixel */
BLUE('b', 2),
+ /** the transparency component of a pixel */
TRANSPARENCY('t', 3),
+ /** the selection status of a pixel */
SELECTION('s', -1);
private char pixelSpec;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|