zerodds-idl-java 1.0.0-rc.1

OMG IDL4 → Java 17 Code-Generator (idl4-java-1.0 + DDS-Java-PSM) für ZeroDDS.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
source: crates/idl-java/tests/snapshot_codegen.rs
expression: "gen_default(\"struct Point { long x; long y; };\")"
---
// === FILE: /Point.java ===
// Generated by zerodds idl-java. Do not edit.
public class Point implements org.omg.dds.topic.TopicType<Point> {
    private int x;
    private int y;

    public Point() {}

    public int getX() { return x; }
    public void setX(int x) { this.x = x; }
    public int getY() { return y; }
    public void setY(int y) { this.y = y; }
}