1 11 package org.eclipse.ui.internal; 12 13 import java.util.List ; 14 15 import org.eclipse.swt.graphics.Rectangle; 16 17 41 public class TrimArea { 42 43 48 String areaId; 49 50 53 int orientation; 54 55 int defaultMinor; 56 57 boolean cacheOK; 59 60 Rectangle areaBounds; 61 62 List trimContents; 63 64 List trimLines; 65 66 public TrimArea(String id, int orientation, int defaultMinor) { 67 this.areaId = id; 68 this.orientation = orientation; 69 this.defaultMinor = defaultMinor; 70 71 areaBounds = new Rectangle(0, 0, 0, 0); 72 73 cacheOK = false; 75 } 76 } 77 | Popular Tags |