1 11 package org.eclipse.ui.internal.layout; 12 13 import org.eclipse.swt.SWT; 14 15 46 public class TrimLayoutData { 47 50 int widthHint = SWT.DEFAULT; 51 52 55 int heightHint = SWT.DEFAULT; 56 57 62 boolean resizable = true; 63 64 67 public TrimLayoutData() { 68 } 69 70 85 public TrimLayoutData(boolean resizable, int widthHint, int heightHint) { 86 this.widthHint = widthHint; 87 this.heightHint = heightHint; 88 this.resizable = resizable; 89 } 90 91 } 92 | Popular Tags |