FileDocCategorySizeDatePackage
PaintFlagsDrawFilter.javaAPI DocAndroid 1.5 API1377Wed May 06 22:42:00 BST 2009android.graphics

PaintFlagsDrawFilter

public class PaintFlagsDrawFilter extends DrawFilter

Fields Summary
Constructors Summary
public PaintFlagsDrawFilter(int clearBits, int setBits)
Subclass of DrawFilter that affects every paint by first clearing the specified clearBits in the paint's flags, and then setting the specified setBits in the paint's flags.

param
clearBits These bits will be cleared in the paint's flags
param
setBits These bits will be set in the paint's flags

        // our native constructor can return 0, if the specified bits
        // are effectively a no-op
        mNativeInt = nativeConstructor(clearBits, setBits);
    
Methods Summary
private static native intnativeConstructor(int clearBits, int setBits)