Uses of Class
org.extex.color.model.GrayscaleColor

Packages that use GrayscaleColor
org.extex.backend.documentWriter.itextpdf This package contains a backend of ExTeX which produce a PDF-file. 
org.extex.backend.documentWriter.pdf This package contains a backend of ExTeX which produce a PDF-file. 
org.extex.backend.documentWriter.postscript.converter This package contains converters for the a PostScript DocumentWriter. 
org.extex.color This package contains some classes for color support. 
org.extex.color.model This package contains implementing classes for different color models. 
 

Uses of GrayscaleColor in org.extex.backend.documentWriter.itextpdf
 

Methods in org.extex.backend.documentWriter.itextpdf with parameters of type GrayscaleColor
 java.lang.Object PdfColorVisitor.visitGray(GrayscaleColor color, java.lang.Object value)
          This method is called when an GrayscaleColor has been encountered.
 

Uses of GrayscaleColor in org.extex.backend.documentWriter.pdf
 

Methods in org.extex.backend.documentWriter.pdf with parameters of type GrayscaleColor
 java.lang.Object PdfColorVisitor.visitGray(GrayscaleColor color, java.lang.Object value)
          This method is called when an GrayscaleColor has been encountered.
 

Uses of GrayscaleColor in org.extex.backend.documentWriter.postscript.converter
 

Methods in org.extex.backend.documentWriter.postscript.converter with parameters of type GrayscaleColor
 void Ps.setgray(java.io.PrintStream out, GrayscaleColor gray)
          Produce a PS setgray instruction.
 

Uses of GrayscaleColor in org.extex.color
 

Methods in org.extex.color that return GrayscaleColor
 GrayscaleColor BasicColorConverter.toGrayscale(Color color)
          Convert an arbitrary color to the gray-scale model.
 GrayscaleColor ColorConverter.toGrayscale(Color color)
          Convert an arbitrary color to the RGB model.
 GrayscaleColor NoColorConverter.toGrayscale(Color color)
          Convert an arbitrary color to the RGB model.
 

Methods in org.extex.color with parameters of type GrayscaleColor
 java.lang.Object ColorVisitor.visitGray(GrayscaleColor color, java.lang.Object value)
          This method is called when an GrayscaleColor has been encountered.
 

Uses of GrayscaleColor in org.extex.color.model
 

Methods in org.extex.color.model that return GrayscaleColor
static GrayscaleColor ColorFactory.getGray(int gray, int alpha)
          Get a new color in the grayscale color model.