Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] Woven classes



There is a new command line option "-showWeaveInfo" that will be available
in AspectJ 1.2.1 and can be used today in AJDT 1.1.11 or by downloading
aspectj-DEVELOPMENT.jar. However the option cannot be supplied as an
attribute to the iajc task (this may be a bug
https://bugs.eclipse.org/bugs/show_bug.cgi?id=74279) so you will need to
use a build list and the "argfiles" attribute instead e.g.

build.xml

<?xml version="1.0" ?>
<project name="...">

      <target name="...">
            <iajc
                  argfiles="build.lst"
:
:
:

build.lst

-showWeaveInfo

Matthew Webster
AOSD Project
Java Technology Centre, MP146
IBM Hursley Park, Winchester,  SO21 2JN, England
Telephone: +44 196 2816139 (external) 246139 (internal)
Email: Matthew Webster/UK/IBM @ IBMGB, matthew_webster@xxxxxxxxxx
http://w3.hursley.ibm.com/~websterm/


André Dantas Rocha <ad-rocha@xxxxxxxxxx>@eclipse.org on 18/09/2004 06:50:21

Please respond to aspectj-users@xxxxxxxxxxx

Sent by:    aspectj-users-admin@xxxxxxxxxxx


To:    <aspectj-users@xxxxxxxxxxx>
cc:
Subject:    [aspectj-users] Woven classes


Hi,

I'm using a iajc task to compile my classes and would like to know if its
possible to log the classes affected by aspects during compilation,
(something like what AJDT aspects outline shows)...

Thanks






Back to the top