1 11 package org.eclipse.swt.custom; 12 13 import org.eclipse.swt.events.*; 14 15 18 public class LineStyleEvent extends TypedEvent { 19 20 23 public int lineOffset; 24 25 28 public String lineText; 29 30 35 public int[] ranges; 36 37 46 public StyleRange[] styles; 47 48 53 public int alignment; 54 55 60 public int indent; 61 62 67 public boolean justify; 68 69 73 public Bullet bullet; 74 75 79 public int bulletIndex; 80 81 static final long serialVersionUID = 3906081274027192884L; 82 83 public LineStyleEvent(StyledTextEvent e) { 84 super(e); 85 lineOffset = e.detail; 86 lineText = e.text; 87 alignment = e.alignment; 88 justify = e.justify; 89 indent = e.indent; 90 bullet = e.bullet; 91 bulletIndex = e.bulletIndex; 92 } 93 } 94 | Popular Tags |