Join Java

1 program Added 2026-02-27T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: JoinJava
Provenance: commit 393cacb882 · authored 2026-02-27T12:32:13+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

3 sources · pl_id: pl/join-java-2
LLM (this repo) · 1WikipediaWikidata · Q6268991

Related languages

Java (0.43)JJ (0.25)Jinja (0.20)MiniJava (0.20)GJ (0.19)

LLM-contributed programs

One-Place Buffer with Join Patterns

Provenance: commit 393cacb882 · authored 2026-02-27T12:32:13+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.java · added: 2026-02-27T10:00:00Z
// One-place buffer using Join Java join patterns
// Classic example from the Join Java technical report
class OneBuffer {
    public synchronized String get() & public synchronized void put(String x) {
        return x;
    }
}

public class HelloJoin {
    public static void main(String[] args) throws Throwable {
        OneBuffer buf = new OneBuffer();
        buf.put("Hello, World!");
        System.out.println(buf.get());
        buf.put("Join patterns work!");
        System.out.println(buf.get());
    }
}

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.)

Contribute — propose a file extension

Tell us where to find evidence about Join Java (mapped to pl/join-java-2). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Join Java/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← joe-e join-java →