1 11 package org.eclipse.swt.custom; 12 13 import org.eclipse.swt.events.*; 14 import org.eclipse.swt.graphics.*; 15 16 19 public class LineBackgroundEvent extends TypedEvent { 20 21 24 public int lineOffset; 25 26 29 public String lineText; 30 31 34 public Color lineBackground; 35 36 static final long serialVersionUID = 3978711687853324342L; 37 38 public LineBackgroundEvent(StyledTextEvent e) { 39 super(e); 40 lineOffset = e.detail; 41 lineText = e.text; 42 } 43 } 44 45 46 | Popular Tags |