AspectJ
1 program
Added 2026-02-05T22:40:31Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit af3cbe6989 · authored 2026-02-05T23:41:09+01:00 · agent claude-code · model sonnet
Sources mentioning this language
8 sources · pl_id:
pl/aspectjWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | aspect-oriented |
|---|---|
| Designed by | Eclipse Foundation |
| First appeared | 2001 |
| License | Eclipse Public License |
| Implemented in | Java |
| Homepage | http://www.eclipse.org/aspectj/ |
Extensions claimed by this language
3 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.aj | linguist | primary | 273.4K files |
.aj | pygments | primary | 273.4K files |
.aj | wikidata | primary | 273.4K files |
Related languages
LLM-contributed programs
Logging Aspect Example
Provenance: commit af3cbe6989 · authored 2026-02-05T23:41:09+01:00 · agent claude-code · model sonnet · WebSearch disabled
aspect LoggingAspect {
pointcut publicMethods(): execution(public * *(..));
before(): publicMethods() {
System.out.println("Entering: " + thisJoinPoint.getSignature());
}
after(): publicMethods() {
System.out.println("Exiting: " + thisJoinPoint.getSignature());
}
}
class Example {
public void doSomething() {
System.out.println("Doing something...");
}
public static void main(String[] args) {
new Example().doSomething();
}
}
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)