changeset 2:8be12a9f1298

Add license indication.
author Yasumasa Suenaga <suenaga.yasumasa@lab.ntt.co.jp>
date Fri, 05 Apr 2013 10:31:54 +0900
parents 93b1c4157005
children 4713409f648d
files agent/ChangeLog agent/src/agentThread.cpp agent/src/agentThread.hpp agent/src/archiveMaker.cpp agent/src/archiveMaker.hpp agent/src/bitMapMarker.cpp agent/src/bitMapMarker.hpp agent/src/classContainer.cpp agent/src/classContainer.hpp agent/src/cmdArchiver.cpp agent/src/cmdArchiver.hpp agent/src/deadlockFinder.cpp agent/src/deadlockFinder.hpp agent/src/elapsedTimer.hpp agent/src/fsUtil.cpp agent/src/fsUtil.hpp agent/src/gcWatcher.cpp agent/src/gcWatcher.hpp agent/src/jniZipArchiver.cpp agent/src/jniZipArchiver.hpp agent/src/jvmInfo.cpp agent/src/jvmInfo.hpp agent/src/jvmSockCmd.cpp agent/src/jvmSockCmd.hpp agent/src/libmain.cpp agent/src/libmain.hpp agent/src/logMain.cpp agent/src/logMain.hpp agent/src/logManager.cpp agent/src/logManager.hpp agent/src/oopUtil.cpp agent/src/oopUtil.hpp agent/src/overrideFunc.S agent/src/signalManager.cpp agent/src/signalManager.hpp agent/src/snapShotContainer.cpp agent/src/snapShotContainer.hpp agent/src/snapShotMain.cpp agent/src/snapShotMain.hpp agent/src/snapShotProcessor.cpp agent/src/snapShotProcessor.hpp agent/src/sorter.hpp agent/src/symbolFinder.cpp agent/src/symbolFinder.hpp agent/src/timer.cpp agent/src/timer.hpp agent/src/trapSender.hpp agent/src/util.cpp agent/src/util.hpp agent/src/vmStructScanner.cpp agent/src/vmStructScanner.hpp analyzer/src/jp/co/ntt/oss/heapstats/LaunchClassLoader.java analyzer/src/jp/co/ntt/oss/heapstats/Launcher.java analyzer/src/jp/co/ntt/oss/heapstats/container/MapKey.java analyzer/src/jp/co/ntt/oss/heapstats/container/ObjectData.java analyzer/src/jp/co/ntt/oss/heapstats/container/PackageFilter.java analyzer/src/jp/co/ntt/oss/heapstats/container/SnapShot.java analyzer/src/jp/co/ntt/oss/heapstats/container/SnapShotHeader.java analyzer/src/jp/co/ntt/oss/heapstats/container/ThreadData.java analyzer/src/jp/co/ntt/oss/heapstats/csv/CSVDumper.java analyzer/src/jp/co/ntt/oss/heapstats/gui/BrowseButton.java analyzer/src/jp/co/ntt/oss/heapstats/gui/DiffDialog.java analyzer/src/jp/co/ntt/oss/heapstats/gui/DiffEntriesModel.java analyzer/src/jp/co/ntt/oss/heapstats/gui/ExpansionContractionPanel.java analyzer/src/jp/co/ntt/oss/heapstats/gui/FilterEntriesModel.java analyzer/src/jp/co/ntt/oss/heapstats/gui/FindDialog.java analyzer/src/jp/co/ntt/oss/heapstats/gui/GCDialog.java analyzer/src/jp/co/ntt/oss/heapstats/gui/GUIMain.java analyzer/src/jp/co/ntt/oss/heapstats/gui/GuiCommon.java analyzer/src/jp/co/ntt/oss/heapstats/gui/HeapProgressBar.java analyzer/src/jp/co/ntt/oss/heapstats/gui/LogDetailDialog.java analyzer/src/jp/co/ntt/oss/heapstats/gui/ResourceDialog.java analyzer/src/jp/co/ntt/oss/heapstats/gui/SearchJTextField.java analyzer/src/jp/co/ntt/oss/heapstats/gui/SelectLogfiles.java analyzer/src/jp/co/ntt/oss/heapstats/gui/SnapShotDialog.java analyzer/src/jp/co/ntt/oss/heapstats/gui/SnapShotEntriesModel.java analyzer/src/jp/co/ntt/oss/heapstats/gui/SnapshotDateListener.java analyzer/src/jp/co/ntt/oss/heapstats/gui/graph/GraphColorHelper.java analyzer/src/jp/co/ntt/oss/heapstats/gui/snapshot/PackageFilterReader.java analyzer/src/jp/co/ntt/oss/heapstats/gui/snapshot/ParserEventHandlerImpl.java analyzer/src/jp/co/ntt/oss/heapstats/gui/snapshot/SnapShotHelper.java analyzer/src/jp/co/ntt/oss/heapstats/gui/snapshot/SnapShotReader.java analyzer/src/jp/co/ntt/oss/heapstats/parser/HeapStatsParser.java analyzer/src/jp/co/ntt/oss/heapstats/parser/ParserEventHandler.java
diffstat 84 files changed, 1117 insertions(+), 133 deletions(-) [+]
line wrap: on
line diff
--- a/agent/ChangeLog	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/ChangeLog	Fri Apr 05 10:31:54 2013 +0900
@@ -1,3 +1,7 @@
+2013-04-05  Yasumasa Suenaga  <suenaga.yasumasa@lab.ntt.co.jp>
+
+	* Add license indication.
+
 2013-04-01  Yasumasa Suenaga  <suenaga.yasumasa@lab.ntt.co.jp>
 
 	* Initial Release
--- a/agent/src/agentThread.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/agentThread.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to work on Jthread.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <jni.h>
--- a/agent/src/agentThread.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/agentThread.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to work on Jthread.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef AGENT_THREAD_HPP
--- a/agent/src/archiveMaker.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/archiveMaker.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used create archive file.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <stdlib.h>
--- a/agent/src/archiveMaker.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/archiveMaker.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used create archive file.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef _ARCHIVE_MAKER_H
--- a/agent/src/bitMapMarker.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/bitMapMarker.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to store and control of bit map.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <sys/mman.h>
--- a/agent/src/bitMapMarker.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/bitMapMarker.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to store and control of bit map.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef _BITMAPMARKER_HPP
--- a/agent/src/classContainer.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/classContainer.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to add up using size every class.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <stdlib.h>
--- a/agent/src/classContainer.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/classContainer.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to add up using size every class.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef CLASS_CONTAINER_HPP
--- a/agent/src/cmdArchiver.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/cmdArchiver.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used create archive file by command line.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <stdlib.h>
--- a/agent/src/cmdArchiver.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/cmdArchiver.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used create archive file by command line.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef _CMD_ARCHIVER_H
--- a/agent/src/deadlockFinder.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/deadlockFinder.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used by find deadlock.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <jvmti.h>
--- a/agent/src/deadlockFinder.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/deadlockFinder.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used by find deadlock.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef _DEADLOCK_FINDER_H
--- a/agent/src/elapsedTimer.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/elapsedTimer.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to measure elapsed time.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef ELAPSED_TIMER_H
--- a/agent/src/fsUtil.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/fsUtil.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is utilities to access file system.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <stdlib.h>
--- a/agent/src/fsUtil.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/fsUtil.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is utilities to access file system.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 #ifndef _FS_UTIL_H
 #define _FS_UTIL_H
--- a/agent/src/gcWatcher.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/gcWatcher.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to take snapshot when finish garbage collection.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <jni.h>
--- a/agent/src/gcWatcher.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/gcWatcher.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to take snapshot when finish garbage collection.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef GCWATCHER_HPP
--- a/agent/src/jniZipArchiver.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/jniZipArchiver.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used create archive file to use java zip library.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <jni.h>
--- a/agent/src/jniZipArchiver.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/jniZipArchiver.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used create archive file to use java zip library.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef _JNI_ZIP_ARCHIVER_H
--- a/agent/src/jvmInfo.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/jvmInfo.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to get JVM performance information.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <jni.h>
--- a/agent/src/jvmInfo.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/jvmInfo.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to get JVM performance information.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef JVMINFO_H
--- a/agent/src/jvmSockCmd.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/jvmSockCmd.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used by thread dump.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <unistd.h>
--- a/agent/src/jvmSockCmd.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/jvmSockCmd.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used by thread dump.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef _JVM_SOCK_CMD_H
--- a/agent/src/libmain.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/libmain.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -4,9 +4,20 @@
  *        e.g. initialization, finalization, etc...
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <jni.h>
--- a/agent/src/libmain.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/libmain.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -4,9 +4,20 @@
  *        e.g. initialization, finalization, etc...
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef LIBMAIN_HPP
--- a/agent/src/logMain.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/logMain.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used common logging process.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <jni.h>
--- a/agent/src/logMain.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/logMain.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used common logging process.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef _LOG_MAIN_HPP
--- a/agent/src/logManager.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/logManager.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used collect log information.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <jni.h>
--- a/agent/src/logManager.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/logManager.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used collect log information.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef _LOG_MANAGER_H
--- a/agent/src/oopUtil.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/oopUtil.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to getting information inner JVM.<br>
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <jni.h>
--- a/agent/src/oopUtil.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/oopUtil.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to getting information inner JVM.<br>
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef _OOP_UTIL_H
--- a/agent/src/overrideFunc.S	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/overrideFunc.S	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to override JVM inner function.<br>
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 /* Override functions of "do_oop" families */
--- a/agent/src/signalManager.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/signalManager.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used by signal handling.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <string.h>
--- a/agent/src/signalManager.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/signalManager.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used by signal handling.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef _SIGNAL_MNGR_H
--- a/agent/src/snapShotContainer.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/snapShotContainer.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to add up using size every class.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <stdlib.h>
--- a/agent/src/snapShotContainer.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/snapShotContainer.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to add up using size every class.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef _SNAPSHOT_CONTAINER_HPP
--- a/agent/src/snapShotMain.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/snapShotMain.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to take snapshot.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <jni.h>
--- a/agent/src/snapShotMain.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/snapShotMain.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to take snapshot.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef _SNAPSHOT_MAIN_HPP
--- a/agent/src/snapShotProcessor.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/snapShotProcessor.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to output ranking and call snapshot function.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <stdlib.h>
--- a/agent/src/snapShotProcessor.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/snapShotProcessor.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to output ranking and call snapshot function.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef SNAPSHOT_PROCESSOR_HPP
--- a/agent/src/sorter.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/sorter.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used sorting class datas.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef SORTER_HPP
--- a/agent/src/symbolFinder.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/symbolFinder.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used by search symbol in library.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef _GNU_SOURCE
--- a/agent/src/symbolFinder.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/symbolFinder.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used by search symbol in library.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef _SYMBOL_FINDER_HPP
--- a/agent/src/timer.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/timer.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to take interval snapshot.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <jni.h>
--- a/agent/src/timer.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/timer.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to take interval snapshot.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef TIMER_HPP
--- a/agent/src/trapSender.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/trapSender.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to send SNMP trap.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef _TRAP_SENDER_H
--- a/agent/src/util.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/util.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is utilities.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <jni.h>
--- a/agent/src/util.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/util.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is utilities.
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef UTIL_HPP
--- a/agent/src/vmStructScanner.cpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/vmStructScanner.cpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to getting JVM structure information.<br>
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #include <string.h>
--- a/agent/src/vmStructScanner.hpp	Mon Apr 01 11:26:27 2013 +0900
+++ b/agent/src/vmStructScanner.hpp	Fri Apr 05 10:31:54 2013 +0900
@@ -3,9 +3,20 @@
  * \brief This file is used to getting JVM structure information.<br>
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
- * [License]
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
- * $id$
  */
 
 #ifndef _VMSCANNER_HPP
--- a/analyzer/src/jp/co/ntt/oss/heapstats/LaunchClassLoader.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/LaunchClassLoader.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * LaunchClassLoader.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/Launcher.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/Launcher.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * Launcher.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/container/MapKey.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/container/MapKey.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * MapKey.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/container/ObjectData.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/container/ObjectData.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * ObjectData.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/container/PackageFilter.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/container/PackageFilter.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * PackageFilter.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/container/SnapShot.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/container/SnapShot.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * SnapShot.java
  * Created on 2011/08/25
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/container/SnapShotHeader.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/container/SnapShotHeader.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * SnapShotHeader.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/container/ThreadData.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/container/ThreadData.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,10 +1,23 @@
 /*
  * ThreadData.java
  * Created on 2012/05/24
- * RCSID: $Id: ThreadData.java 407 2012-05-21 00:30:29Z alpha_takahiro.jyoukou $
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ *
  */
 package jp.co.ntt.oss.heapstats.container;
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/csv/CSVDumper.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/csv/CSVDumper.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * CSVDumper.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/BrowseButton.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/BrowseButton.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,10 +1,23 @@
 /*
  * BrowseButton.java
  * Created on 2012/01/24
- * RCSID: $Id: BrowseButton.java 385 2012-03-09 06:17:22Z alpha_takahiro.jyoukou $
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ *
  */
 package jp.co.ntt.oss.heapstats.gui;
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/DiffDialog.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/DiffDialog.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,10 +1,23 @@
 /*
  * DiffDialog.java
  * Created on 2011/10/13
- * RCSID: $Id: DiffDialog.java 407 2012-05-21 00:30:29Z alpha_takahiro.jyoukou $
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ *
  */
 
 package jp.co.ntt.oss.heapstats.gui;
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/DiffEntriesModel.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/DiffEntriesModel.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * DiffEntriesModel.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/ExpansionContractionPanel.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/ExpansionContractionPanel.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * ExpansionContractionPanel.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/FilterEntriesModel.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/FilterEntriesModel.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * FilterEntriesModel.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/FindDialog.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/FindDialog.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,10 +1,23 @@
 /*
  * FindDialog.java
  * Created on 2012/05/24
- * RCSID: $Id: FindDialog.java 440 2012-07-19 09:03:01Z alpha_takahiro.jyoukou $
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ *
  */
 
 package jp.co.ntt.oss.heapstats.gui;
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/GCDialog.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/GCDialog.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,10 +1,23 @@
 /*
  * GCDialog.java
  * Created on 2011/10/13
- * RCSID: $Id: GCDialog.java 407 2012-05-21 00:30:29Z alpha_takahiro.jyoukou $
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ *
  */
 
 package jp.co.ntt.oss.heapstats.gui;
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/GUIMain.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/GUIMain.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * GUIMain.java
  * Created on 2011/09/07
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
@@ -569,6 +582,7 @@
                 // Version Dialog
                 StringBuilder buf = new StringBuilder();
                 buf.append("\n\n  Version: 1.0.0\n\n");
+                buf.append("HeapStats is licensed under the GNU General Public License version 2.\n\n");
                 buf.append("about:license\n");
                 buf.append("  JFreeChart  :  the GNU Lesser General Public License\n\n");
                 buf.append("  Copyright (C) 2011-2013 Nippon Telegraph and ");
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/GuiCommon.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/GuiCommon.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,10 +1,23 @@
 /*
  * GuiCommon.java
  * Created on 2011/09/08
- * RCSID: $Id: GuiCommon.java 407 2012-05-21 00:30:29Z alpha_takahiro.jyoukou $
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ *
  */
 
 package jp.co.ntt.oss.heapstats.gui;
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/HeapProgressBar.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/HeapProgressBar.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * HeapProgressBar.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/LogDetailDialog.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/LogDetailDialog.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,10 +1,23 @@
 /*
  * LogDetailDialog.java
  * Created on 2012/01/24
- * RCSID: $Id: LogDetailDialog.java 437 2012-07-19 08:39:41Z alpha_takahiro.jyoukou $
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ *
  */
 package jp.co.ntt.oss.heapstats.gui;
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/ResourceDialog.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/ResourceDialog.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,10 +1,23 @@
 /*
  * ResourceDialog.java
  * Created on 2012/01/20
- * RCSID: $Id: ResourceDialog.java 407 2012-05-21 00:30:29Z alpha_takahiro.jyoukou $
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ *
  */
 
 package jp.co.ntt.oss.heapstats.gui;
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/SearchJTextField.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/SearchJTextField.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * SearchJTextField.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/SelectLogfiles.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/SelectLogfiles.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,10 +1,23 @@
 /*
  * SelectLogfiles.java
  * Created on 2012/01/24
- * RCSID: $Id: SelectLogfiles.java 385 2012-03-09 06:17:22Z alpha_takahiro.jyoukou $
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ *
  */
 package jp.co.ntt.oss.heapstats.gui;
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/SnapShotDialog.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/SnapShotDialog.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,10 +1,23 @@
 /*
  * SnapShotDialog.java
  * Created on 2011/10/13
- * RCSID: $Id: SnapShotDialog.java 407 2012-05-21 00:30:29Z alpha_takahiro.jyoukou $
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
  *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ *
  */
 
 package jp.co.ntt.oss.heapstats.gui;
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/SnapShotEntriesModel.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/SnapShotEntriesModel.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * SnapShotEntriesModel.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/SnapshotDateListener.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/SnapshotDateListener.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * SnapshotDateListener.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/graph/GraphColorHelper.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/graph/GraphColorHelper.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * GraphColorHelper.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/snapshot/PackageFilterReader.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/snapshot/PackageFilterReader.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * PackageFilterReader.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/snapshot/ParserEventHandlerImpl.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/snapshot/ParserEventHandlerImpl.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * ParserEventHandlerImpl.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/snapshot/SnapShotHelper.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/snapshot/SnapShotHelper.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * SnapShotHelper.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/snapshot/SnapShotReader.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/snapshot/SnapShotReader.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * SnapShotReader.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/parser/HeapStatsParser.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/parser/HeapStatsParser.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * HeapStatsParser.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
--- a/analyzer/src/jp/co/ntt/oss/heapstats/parser/ParserEventHandler.java	Mon Apr 01 11:26:27 2013 +0900
+++ b/analyzer/src/jp/co/ntt/oss/heapstats/parser/ParserEventHandler.java	Fri Apr 05 10:31:54 2013 +0900
@@ -1,9 +1,22 @@
 /*
  * ParserEventHandler.java
  * Created on 2011/10/13
- * RCSID: $Id:$
  *
  * Copyright (C) 2011-2013 Nippon Telegraph and Telephone Corporation
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */