/**
* Dispose the resource pool.
*/
private void disposeResourcePool() {
for (Iterator it = this.resourcePool.iterator(); it.hasNext();) {
Resource resource = (Resource) it.next();
resource.dispose();
}
this.fontsPool.clear();
this.colorsPool.clear();
this.transformsPool.clear();
this.resourcePool.clear();
}
SWTGraphics2D.java 文件源码
java
阅读 31
收藏 0
点赞 0
评论 0
项目:group-five
作者:
评论列表
文章目录