- Complete project renaming

- Update README files
This commit is contained in:
Martin Hare Robertson 2010-04-14 08:49:15 +01:00
parent f0a6442beb
commit 37e14ce43a
6 changed files with 35 additions and 24 deletions

View File

@ -1,23 +1,9 @@
org.intrace description:
== org.intrace Repository ==
-- Packages --
agent : Instrumenting Agent including IP Server
output : Instrumentation output handlers
output.trace : Default (and currently only) handler
=> org.intrace - Main InTrace Project
client/cui/AgentLoader : Command line runtime Agent loading tool
client/cui/TraceClient : Command line remote Agent config tool
client/gui/ : GUI remote Agent config tool/network trace viewer
=> org.intrace.agentbug - Project containing simple Agent used to illustrate bug report to Sun.
-- Functional Pieces --
1. Instrumenting Agent
2. Runtime Agent Loader
3. CUI Remote Agent Config Tool
4. GUI Remote Agent Config Tool/Network Trace Viewer
Note to self - Git Commands:
git init
git remote add origin git@github.com:mchr3k/org.intrace.git
git push origin master
=> org.intrace.agentloader - Project containing command line agent loader for loading an agent into a running process.
=> org.intrace.test - Dumping ground for toy classes used in manual testing.

View File

@ -1,4 +1,4 @@
package gb.testinstru;
package org.intrace.agentbug.agent;
import java.lang.instrument.Instrumentation;

View File

@ -1,4 +1,4 @@
package gb.test;
package org.intrace.agentbug.app;
public class TestApplication
{

View File

@ -1,4 +1,4 @@
package mchr;
package org.intrace.sandbox;
import java.util.List;
import java.util.Map;

View File

@ -1,4 +1,4 @@
package mchr;
package org.intrace.sandbox;
import java.util.Arrays;

View File

@ -1 +1,26 @@
test
org.intrace description:
-- Functional Pieces --
1. Instrumenting Agent
2. CUI Remote Agent Config Tool
3. GUI Remote Agent Config Tool/Network Trace Viewer
4. Common Output Classes
5. Instrumentation Handlers
-- Packages (org.intrace.) --
agent : Instrumenting Agent
agent.server : IP Server for controlling the Agent, Output and Instrumentation Handlers
client.cui : Command Line Agent Config Client
client.gui : GUI Agent Config Client + Live Trace/Callers viewer
client.gui.helper : Helper classes used by the GUI interface
output : Common Output Classes
output.trace : Trace Instrumentation Handler
output.callers : Callers Analysis Instrumentation Handler
shared : String constants used by both the Agent Server and the Client