1 package org.jacorb.util.tracing; 2 3 23 24 import java.util.Vector ; 25 26 35 public class TraceTreeNode 36 { 37 protected Vector subtraces = null; 38 39 protected int tracer_id = 0; 40 protected String operation = null; 41 protected long client_time = 0; 42 protected long server_time = 0; 43 44 45 public TraceTreeNode(int tracer_id) 46 { 47 this.tracer_id = tracer_id; 48 subtraces = new Vector (); 49 } 50 51 57 } 62 63 64 65 66 67 68 69 70 71 72 73 | Popular Tags |