[brailleblaster] push by brandon....@xxxxxxxxx - Added missing class on 2015-02-04 13:32 GMT

  • From: brailleblaster@xxxxxxxxxxxxxx
  • To: brailleblaster@xxxxxxxxxxxxx
  • Date: Wed, 04 Feb 2015 13:32:39 +0000

Revision: 4f167154b977
Branch:   rt1447-MergeElements
Author:   Brandon Roller<brandon.r.roller@xxxxxxxxx>
Date:     Wed Feb  4 13:36:20 2015 UTC
Log:      Added missing class
https://code.google.com/p/brailleblaster/source/detail?r=4f167154b977

Added:
/src/main/org/brailleblaster/perspectives/braille/eventQueue/StyleEvent.java

=======================================
--- /dev/null
+++ /src/main/org/brailleblaster/perspectives/braille/eventQueue/StyleEvent.java Wed Feb 4 13:36:20 2015 UTC
@@ -0,0 +1,25 @@
+package org.brailleblaster.perspectives.braille.eventQueue;
+
+import org.brailleblaster.perspectives.braille.document.BBSemanticsTable.Styles;
+
+public class StyleEvent extends Event {
+       int listIndex, sectionIndex;
+       Styles style;
+       String config;
+
+ public StyleEvent(int listIndex, int sectionIndex, int textOffset, int brailleOffset, Styles style, String config){
+               super(EventTypes.Style_Change, textOffset, brailleOffset);
+               this.listIndex = listIndex;
+               this.sectionIndex = sectionIndex;
+               this.style = style;
+               this.config = config;
+       }
+
+       public Styles getStyle(){
+               return style;
+       }
+
+       public int getListIndex(){
+               return listIndex;
+       }
+}

Other related posts:

  • » [brailleblaster] push by brandon....@xxxxxxxxx - Added missing class on 2015-02-04 13:32 GMT - brailleblaster