All pastes #2072474 Raw Edit

Someone

public text v1 · immutable
#2072474 ·published 2011-05-30 21:19 UTC
rendered paste body
				else if(e.getSource() == jmenuitemDigit){


			        DecimalFormat df = new DecimalFormat();

					String inputString = getDisplayString();
					if (inputString.indexOf(",") > 0){
						df.setGroupingSize(0);
						BigDecimal bd= new BigDecimal (labelOutPut.getText());

   			        	String bytesString = df.format(bd);
						setDisplayString(bytesString);
					}
					else if (inputString.indexOf(",") <= 0){
						df.setGroupingSize(3);
						BigDecimal bd= new BigDecimal (labelOutPut.getText());

   			        	String bytesString = df.format(bd);
						setDisplayString(bytesString);
					}

				}