diff options
author | aclement <aclement> | 2004-04-07 16:08:30 +0000 |
---|---|---|
committer | aclement <aclement> | 2004-04-07 16:08:30 +0000 |
commit | 2674dec2bc1524c117003708fe590e920c3f7cc4 (patch) | |
tree | 681c586b093ebd6e3eebc88943ccdaceebf7a0a9 /docs/dist/doc/examples | |
parent | 717e900e8aaa15a7ca2fcca7551a370838dc263f (diff) | |
download | aspectj-2674dec2bc1524c117003708fe590e920c3f7cc4.tar.gz aspectj-2674dec2bc1524c117003708fe590e920c3f7cc4.zip |
Now created at install time.
Diffstat (limited to 'docs/dist/doc/examples')
-rw-r--r-- | docs/dist/doc/examples/ltw/aj | 16 | ||||
-rw-r--r-- | docs/dist/doc/examples/ltw/aj.bat | 22 |
2 files changed, 0 insertions, 38 deletions
diff --git a/docs/dist/doc/examples/ltw/aj b/docs/dist/doc/examples/ltw/aj deleted file mode 100644 index 8e7a250bb..000000000 --- a/docs/dist/doc/examples/ltw/aj +++ /dev/null @@ -1,16 +0,0 @@ -# *******************************************************************
-# Copyright (c) 2004 IBM Corporation
-# All rights reserved.
-# This program and the accompanying materials are made available
-# under the terms of the Common Public License v1.0
-# which accompanies this distribution and is available at
-# http://www.eclipse.org/legal/cpl-v10.html
-#
-# Contributors:
-# Matthew Webster initial implementation
-# ******************************************************************/
-
-if [ "$ASPECTJ_HOME" = "" ] ; then ASPECTJ_HOME=../../../
-fi
-
-"$JAVA_HOME/bin/java" -classpath "$ASPECTJ_HOME/lib/aspectjtools.jar" "-Djava.system.class.loader=org.aspectj.weaver.WeavingURLClassLoader" "-Daj.class.path=$ASPECTPATH:$CLASSPATH" "-Daj.aspect.path=$ASPECTPATH" "$@"
diff --git a/docs/dist/doc/examples/ltw/aj.bat b/docs/dist/doc/examples/ltw/aj.bat deleted file mode 100644 index c004598bb..000000000 --- a/docs/dist/doc/examples/ltw/aj.bat +++ /dev/null @@ -1,22 +0,0 @@ -@echo off
-rem *******************************************************************
-rem Copyright (c) 2004 IBM Corporation
-rem All rights reserved.
-rem This program and the accompanying materials are made available
-rem under the terms of the Common Public License v1.0
-rem which accompanies this distribution and is available at
-rem http://www.eclipse.org/legal/cpl-v10.html
-rem
-rem Contributors:
-rem Matthew Webster initial implementation
-rem ******************************************************************/
-
-if "%ASPECTJ_HOME%" == "" set ASPECTJ_HOME=..\..\..\
-
-if exist "%JAVA_HOME%\bin\java.exe" goto haveJava
-if exist "%JAVA_HOME%\bin\java.bat" goto haveJava
-if exist "%JAVA_HOME%\bin\java" goto haveJava
-echo java does not exist as %JAVA_HOME%\bin\java
-echo please fix the JAVA_HOME environment variable
-:haveJava
-"%JAVA_HOME%\bin\java" -classpath "%ASPECTJ_HOME%\lib\aspectjtools.jar" "-Djava.system.class.loader=org.aspectj.weaver.WeavingURLClassLoader" "-Daj.class.path=%ASPECTPATH%;%CLASSPATH%" "-Daj.aspect.path=%ASPECTPATH%" %1 %2 %3 %4 %5 %6 %7 %8 %9
|