[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[List Home]
|
Re: [aspectj-users] obtaining ajdt cross cutting information
|
- From: "Andrew Eisenberg" <andrew@xxxxxxxxxxxx>
- Date: Thu, 4 Dec 2008 09:03:28 -0800
- Delivered-to: aspectj-users@eclipse.org
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:reply-to :sender:to:subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references :x-google-sender-auth; bh=vibR/0svFoMocYPfnHTsFrdGd1l7SZnsN1cazwIr2Zo=; b=vkrudfuU/xswJ1IooZs1kjz9f29JNHyrFlrdybyGW+57GmWbehhC3nIhRF+uEsBqTf NZrmjbogW0OCwsBPMur1oSVeMdxEMpLSBsHxRUbjKgQLXrma0G7/rQLpYEJd0VBEUT4B Nq8ZcfU83iCHPCrlwFO/QxiMx9CDJLG+8/6mE=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:reply-to:sender:to:subject:cc:in-reply-to :mime-version:content-type:content-transfer-encoding :content-disposition:references:x-google-sender-auth; b=iz5nLz/B/pzytS1e6l+Q+fjew1ZoTiUUoKoxNR0+KdO4KIXlv+x27+BSb9OsQE6qVK cMMdAYSdzVr/M5UrLBnJqt5IyvAbS+blk9jL7nD4F3SX4nFrDHBBDDJRPy6EYDjp8Luk a6P+2eclNCva4LGx8nH7CLNDbpZtf4T9aYypc=
On Wed, Dec 3, 2008 at 10:04 PM, tamal nath <tmlnth@xxxxxxxxx> wrote:
> 2. IRelationship cannot be resolved to a type
>
> 3. Type mismatch: cannot convert from element type Object to String
>
That was my fault. I wrote the code, but didn't actually run it. It
is meant to be a template that you can use.
AspectJ does not use generics, so you have to cast
for (IRelationship rel : (Iterable<IRelationship>) rels) {
for (String targetHandle : (Iterable<String>) rel.getTargets()) {
> At http://www.eclipse.org/ajdt/developers.php#q:cvs
>
> 4. How can I connect the AJDT CVS repository and download?
>
> path:/cvs/root/tools
>
Thanks.