1 11 package org.eclipse.swt.custom; 12 13 14 import org.eclipse.swt.events.*; 15 16 60 public class BidiSegmentEvent extends TypedEvent { 61 62 65 public int lineOffset; 66 67 70 public String lineText; 71 72 75 public int[] segments; 76 77 static final long serialVersionUID = 3257846571587547957L; 78 79 BidiSegmentEvent(StyledTextEvent e) { 80 super(e); 81 lineOffset = e.detail; 82 lineText = e.text; 83 } 84 } 85 | Popular Tags |