Here you can find the source of dumpCharCharArray(String msg, char[][] o)
public static void dumpCharCharArray(String msg, char[][] o)
//package com.java2s; /******************************************************************************* * Copyright (c) 2000, 2008 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors:/*from w w w . j a v a2 s . c om*/ * IBM Corporation - initial API and implementation *******************************************************************************/ public class Main { public static void dumpCharCharArray(String msg, char[][] o) { dump("DUMPING char[][]:" + msg); //$NON-NLS-1$ for (int i = 0; i < o.length; i++) { dump(new String(o[i])); } } public static void dump(Object o) { if (o == null) dump("null"); //$NON-NLS-1$ else dump(o.toString()); } public static void dump(String msg) { System.out.println("DUMP:" + msg); //$NON-NLS-1$ } }