blob: ad7b9c7fc2e7496beb6b41b7ae473e5253ebfff5 [file] [log] [blame]
package org.eclipse.swt.graphics;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved
*/
import org.eclipse.swt.*;
/**
* Instances of this class are descriptions of GCs in terms
* of unallocated platform-specific data fields.
* <p>
* <b>IMPORTANT:</b> This class is <em>not</em> part of the public
* API for SWT. It is marked public only so that it can be shared
* within the packages provided by SWT. It is not available on all
* platforms, and should never be called from application code.
* </p>
*
* @private
*/
public final class GCData {
public Image image;
public int drawable;
public int clipRgn;
public int lineStyle = SWT.LINE_SOLID;
public int renderTable;
}