Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 419467
Collapse All | Expand All

(-)a/org.eclipse.gef4.zest.layouts/src/org/eclipse/gef4/zest/layouts/algorithms/SpaceTreeLayoutAlgorithm.java (+24 lines)
Lines 1128-1133 Link Here
1128
	private double branchGap = leafGap + 5;
1128
	private double branchGap = leafGap + 5;
1129
	private double layerGap = 20;
1129
	private double layerGap = 20;
1130
1130
1131
	protected void setLeafGap(double value) {
1132
		this.leafGap = value;
1133
	}
1134
1135
	protected void setBranchGap(double value) {
1136
		this.branchGap = value;
1137
	}
1138
1139
	protected void setLayerGap(double value) {
1140
		this.layerGap = value;
1141
	}
1142
1143
	protected double getLeafGap() {
1144
		return this.leafGap;
1145
	}
1146
1147
	protected double getBranchGap() {
1148
		return this.branchGap;
1149
	}
1150
1151
	protected double getLayerGap() {
1152
		return this.layerGap;
1153
	}
1154
1131
	private boolean directionChanged = false;
1155
	private boolean directionChanged = false;
1132
1156
1133
	private LayoutContext context;
1157
	private LayoutContext context;

Return to bug 419467