head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	2007.11.12.01.18.04;	author idooley2;	state dead;
branches;
next	1.1;
commitid	1bb54737a9b14567;

1.1
date	2007.11.08.19.23.38;	author idooley2;	state Exp;
branches;
next	;
commitid	4c6c473362164567;


desc
@@


1.2
log
@Major changes for a rewrite of Timeline Tool and NoiseMiner Tool. Much new functionality and better designs. Timeline now
lives in its own namespace, and timelines are modular, so they can be used in other tools. There are minor changes in a
bunch of other seemingly irrelevant classes but these are required to allow Timeline to no longer be in the
"projections.gui" namespace.
@
text
@#!/bin/sh

jarpath="`dirname $0`/projections-new-noiseminer.jar"

if test -x /usr/bin/cygpath
then 
  if test "`uname -o`" = "Cygwin"
  then
    jarpath=`/usr/bin/cygpath -w -a $jarpath`
  fi 
fi

java -ms256000000 -mx1000000000 \
  -classpath $jarpath \
  projections.analysis.ProjMain $*
@


1.1
log
@A newer version of projections which cannot yet be checked in fully because the Timeline tool is missing some functionality
(zoom, and scrollbar staying still during resize).
@
text
@@

