[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[List Home]
|
[aspectj-users] Mixin not recognized
|
- From: "Leyzerzon, Simeon " <simeon.leyzerzon@xxxxxxxx>
- Date: Tue, 27 Oct 2009 22:41:45 -0400
- Accept-language: en-US
- Acceptlanguage: en-US
- Delivered-to: aspectj-users@eclipse.org
- Thread-index: AcpXeDCu4hM3q+JBSli9t8OR1uE2ow==
- Thread-topic: Mixin not recognized
I'm trying to create a mixin inside an AJ project in MyEclipse:
public interface IDaoMixin {
public static aspect Impl {
....
}
public void setJdbcTemplate(JdbcTemplate template);
}
and it gives me the following:
Multiple markers at this line
- Syntax error on token "aspect", class
expected
- aspect cannot be resolved to a type
- The interface IDaoMixin cannot define an
initializer
What ccould be a problem here? What's interesting, is that the Problems view in Eclipse doesn't register a problem, it only appears inside the editor.
Here's the .project file:
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>GlobalMarketAnalytics</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.ajdt.core.ajbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.genuitec.eclipse.ast.deploy.core.DeploymentBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.genuitec.eclipse.springframework.springbuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.ajdt.ui.ajnature</nature>
<nature>com.genuitec.eclipse.springframework.springnature</nature>
<nature>com.genuitec.eclipse.ast.deploy.core.deploymentnature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
Thank you in advance.
Simeon