Interface WritableColor

All Known Implementing Classes:
Color

public interface WritableColor
Write interface for Colors
Version:
$Revision$ $Id$
Author:
$Author$
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Read a color from a byte buffer
    void
    Read a color from a byte buffer
    void
    Read a color from a byte buffer
    void
    Read a color from a byte buffer
    void
    Read a color from a byte buffer
    void
    Read a color from a byte buffer
    void
    set(byte r, byte g, byte b)
    Set a color
    void
    set(byte r, byte g, byte b, byte a)
    Set a color
    void
    set(int r, int g, int b)
    Set a color
    void
    set(int r, int g, int b, int a)
    Set a color
    void
    setAlpha(byte alpha)
    Set the Alpha component
    void
    setAlpha(int alpha)
    Set the Alpha component
    void
    setBlue(byte blue)
    Set the Blue component
    void
    setBlue(int blue)
    Set the Blue component
    void
    Set this color's color by copying another color
    void
    setGreen(byte green)
    Set the Green component
    void
    setGreen(int green)
    Set the Green component
    void
    setRed(byte red)
    Set the Red component
    void
    setRed(int red)
    Set the Red component
  • Method Details

    • set

      void set(int r, int g, int b, int a)
      Set a color
    • set

      void set(byte r, byte g, byte b, byte a)
      Set a color
    • set

      void set(int r, int g, int b)
      Set a color
    • set

      void set(byte r, byte g, byte b)
      Set a color
    • setRed

      void setRed(int red)
      Set the Red component
    • setGreen

      void setGreen(int green)
      Set the Green component
    • setBlue

      void setBlue(int blue)
      Set the Blue component
    • setAlpha

      void setAlpha(int alpha)
      Set the Alpha component
    • setRed

      void setRed(byte red)
      Set the Red component
    • setGreen

      void setGreen(byte green)
      Set the Green component
    • setBlue

      void setBlue(byte blue)
      Set the Blue component
    • setAlpha

      void setAlpha(byte alpha)
      Set the Alpha component
    • readRGBA

      void readRGBA(ByteBuffer src)
      Read a color from a byte buffer
      Parameters:
      src - The source buffer
    • readRGB

      void readRGB(ByteBuffer src)
      Read a color from a byte buffer
      Parameters:
      src - The source buffer
    • readARGB

      void readARGB(ByteBuffer src)
      Read a color from a byte buffer
      Parameters:
      src - The source buffer
    • readBGRA

      void readBGRA(ByteBuffer src)
      Read a color from a byte buffer
      Parameters:
      src - The source buffer
    • readBGR

      void readBGR(ByteBuffer src)
      Read a color from a byte buffer
      Parameters:
      src - The source buffer
    • readABGR

      void readABGR(ByteBuffer src)
      Read a color from a byte buffer
      Parameters:
      src - The source buffer
    • setColor

      void setColor(ReadableColor src)
      Set this color's color by copying another color
      Parameters:
      src - The source color