edu.wisc.cs.stego
Class Seek

java.lang.Object
  |
  +--edu.wisc.cs.stego.Seek

public class Seek
extends java.lang.Object

This class contains the starting point for a program which attempts to extract a watermark from a heap profile. On the command line it takes the name of a file containing the heap profile, and the parameters necessary to instantiate and operate a Scanner object which will search for potential watermarks.


Field Summary
static java.lang.String VERSION
          String containing version information.
 
Method Summary
static void main(java.lang.String[] argv)
          The starting point for a program which attempts to extract a watermark from a heap profile.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

VERSION

public static final java.lang.String VERSION
String containing version information.
Method Detail

main

public static void main(java.lang.String[] argv)
The starting point for a program which attempts to extract a watermark from a heap profile. Required as a command line argument is the name of a file which contains heap profile data from the JVM. Optionally, this is followed by the name of a classfile containing the scanner to use in searching the heap profile. Finally any arguments to the scanner are given.

Command line syntax:

   java edu.wisc.cs.stego.Seek [options] [heap file] [scanner class] [scanner arguments]
Parameters:
argv - command line arguments.