Lines Matching refs:append

123         append("<table cellpadding=1>");
135 append("<tr><td colspan=4>");
136 append("<center><b>" + Messages.SUMMARY_TAB_TAB_NAME + "</b></center>");
139 append("<center>" + dateTime + "</center>");
141 append(newDivider);
144 append(newLeftTable);
145 append(Messages.CONNECTION_NAME, vmPanel.getDisplayName());
146 append(Messages.VIRTUAL_MACHINE,
149 append(Messages.VENDOR, rmBean.getVmVendor());
150 append(Messages.NAME, rmBean.getName());
151 append(endTable);
153 append(newRightTable);
155 append(Messages.UPTIME, formatTime(result.upTime));
158 append(Messages.PROCESS_CPU_TIME, formatNanoTime(result.processCpuTime));
162 append(Messages.JIT_COMPILER, cmpMBean.getName());
163 append(Messages.TOTAL_COMPILE_TIME,
168 append(Messages.JIT_COMPILER, Messages.UNAVAILABLE);
170 append(endTable);
173 append(newDivider);
176 append(newLeftTable);
183 append(Messages.LIVE_THREADS, strings1[0]);
184 append(Messages.PEAK, strings1[1]);
185 append(Messages.DAEMON_THREADS, strings1[2]);
186 append(Messages.TOTAL_THREADS_STARTED, strings1[3]);
187 append(endTable);
189 append(newRightTable);
194 append(Messages.CURRENT_CLASSES_LOADED, strings2[0]);
195 append(Messages.TOTAL_CLASSES_LOADED, strings2[2]);
196 append(Messages.TOTAL_CLASSES_UNLOADED, strings2[1]);
197 append(null, "");
198 append(endTable);
201 append(newDivider);
206 append(newLeftTable);
208 append(Messages.CURRENT_HEAP_SIZE, strings1[0]);
209 append(Messages.MAXIMUM_HEAP_SIZE, strings1[1]);
210 append(endTable);
212 append(newRightTable);
214 append(Messages.COMMITTED_MEMORY, strings2[0]);
215 append(Messages.SUMMARY_TAB_PENDING_FINALIZATION_LABEL,
218 append(endTable);
220 append(newTable);
228 append(Messages.GARBAGE_COLLECTOR,
234 append(endTable);
237 append(newDivider);
240 append(newLeftTable);
245 append(Messages.OPERATING_SYSTEM, osName + " " + osVersion);
246 append(Messages.ARCHITECTURE, osArch);
247 append(Messages.NUMBER_OF_PROCESSORS, result.nCPUs+"");
266 append(Messages.COMMITTED_VIRTUAL_MEMORY, kbStrings1[0]);
267 append(endTable);
269 append(newRightTable);
270 append(Messages.TOTAL_PHYSICAL_MEMORY, kbStrings2[0]);
271 append(Messages.FREE_PHYSICAL_MEMORY, kbStrings2[1]);
272 append(Messages.TOTAL_SWAP_SPACE, kbStrings2[2]);
273 append(Messages.FREE_SWAP_SPACE, kbStrings2[3]);
276 append(endTable);
279 append(newDivider);
282 append(newTable);
288 append(Messages.VM_ARGUMENTS, args, 4);
289 append(Messages.CLASS_PATH, rmBean.getClassPath(), 4);
290 append(Messages.LIBRARY_PATH, rmBean.getLibraryPath(), 4);
291 append(Messages.BOOT_CLASS_PATH,
296 append(endTable);
312 append("</table>");
320 private synchronized void append(String str) {
321 buf.append(str);
324 void append(String label, String value) {
325 append(newRow(label, value));
328 private void append(String label, String value, int columnPerRow) {
333 append(newRow(label, value, columnPerRow));