private void dispatchDrawings( GC gc ) {
for( String drawing : cache.getCachedDrawings() ) {
if( drawing != null ) {
GCOperationDispatcher dispatcher = new GCOperationDispatcher( gc, drawing );
dispatcher.dispatch();
}
}
}
@SuppressWarnings({ "unchecked", "deprecation" })