.NET
javacomp.txt
Associated article: Writing High-Performance Graphical Java Components
Tags: .NET
Published source code accompanying the article by Harold Shinsato in which he presents tips and tricks for writing high-performance, computationally-intensive, graphical Java components.
Writing High-Performance Graphical Java Components
by Harold Shinsato
Listing One
// An example of a time bound graphics painted in Java for a tree hierarchy
import java.util.Vector;
public class TimeBoundPainter {
void paintTree(Node node) {
runQueue(queueTreeGraphics( node ),
200 + java.lang....


