Ejemplo n.º 1
0
 /** Sets the custom number format field value. true if this object has a custom number format */
 public void setCustomNumberFormat(boolean value) {
   field_3_options = customNumberFormat.setShortBoolean(field_3_options, value);
 }
Ejemplo n.º 2
0
 public void testSetShortBoolean() {
   assertEquals(bf_multi.setShort((short) 0), bf_multi.setShortBoolean((short) 0, true));
   assertEquals(bf_single.setShort((short) 0), bf_single.setShortBoolean((short) 0, true));
   assertEquals(bf_multi.clearShort((short) -1), bf_multi.setShortBoolean((short) -1, false));
   assertEquals(bf_single.clearShort((short) -1), bf_single.setShortBoolean((short) -1, false));
 }
Ejemplo n.º 3
0
 /** Sets the display as percentage field value. results displayed as percentages */
 public void setDisplayAsPercentage(boolean value) {
   field_1_formatFlags = displayAsPercentage.setShortBoolean(field_1_formatFlags, value);
 }
Ejemplo n.º 4
0
 /** Sets the shadow field value. display a shadow for the chart */
 public void setShadow(boolean value) {
   field_1_formatFlags = shadow.setShortBoolean(field_1_formatFlags, value);
 }
Ejemplo n.º 5
0
 /** Sets the stacked field value. series is stacked */
 public void setStacked(boolean value) {
   field_1_formatFlags = stacked.setShortBoolean(field_1_formatFlags, value);
 }