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

@ToString(excludes="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;
	
	@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;
		}
	}
}