1 21 22 package org.armedbear.j; 23 24 import java.awt.Color ; 25 26 class FormatTableEntry 27 { 28 private final int format; 29 private final Color color; 30 private final int style; 31 32 FormatTableEntry(int format, Color color, int style) 33 { 34 this.format = format; 35 this.color = color; 36 this.style = style; 37 } 38 39 final int getFormat() 40 { 41 return format; 42 } 43 44 final Color getColor() 45 { 46 return color; 47 } 48 49 final int getStyle() 50 { 51 return style; 52 } 53 } 54 | Popular Tags |