Structures fields and properties in Java

//In Java there are no structures
class ColorPoint {
    //Fields
    public int xy;

    //In Java there are no properties
    public Brush Color;
}