aboutsummaryrefslogtreecommitdiff
path: root/usage_examples/ToStringExample_pre.jpage
blob: 39b25892efc1ff5e7fb62755aa635697f7be68bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import lombok.ToString;

@ToString(exclude="id")
public class ToStringExample {
	private static final int STATIC_VAR = 10;
	private String name;
	private Shape shape = new Square(5, 10);
	private String[] tags;
	private int id;
	
	public String getName() {
		return this.name;
	}
	
	@ToString(callSuper=true, includeFieldNames=true)
	public static class Square extends Shape {
		private final int width, height;
		
		public Square(int width, int height) {
			this.width = width;
			this.height = height;
		}
	}
}