Searched defs:AwtPen (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Pen.h33 * An AwtPen is a cached Windows pen.
35 class AwtPen : public AwtGDIObject { class in inherits:AwtGDIObject
41 static AwtPen* Get(COLORREF color);
43 // Delete an AwtPen, called by Hashtable.clear().
55 AwtPen(COLORREF color);
56 ~AwtPen() {}
H A Dawt_Pen.cpp28 GDIHashtable AwtPen::cache("Pen cache", DeleteAwtPen);
30 AwtPen::AwtPen(COLORREF color) { function in class:AwtPen
56 AwtPen* AwtPen::Get(COLORREF color) {
60 AwtPen* obj = static_cast<AwtPen*>(cache.get(
63 obj = new AwtPen(color);
72 void AwtPen::ReleaseInCache() {
82 void AwtPen
[all...]

Completed in 35 milliseconds