aboutsummaryrefslogtreecommitdiff
path: root/website/usageExamples/ToStringExample_pre.jpage
blob: 1b6b58e00dd06fc854a0fb29071299e8167f5adc (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
public class ToStringExample {
	private static final int STATIC_VAR = 10;
	private String name;
	private Shape shape = new Square(5, 10);
	private String[] tags;
	@ToString.Exclude 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;
		}
	}
}