Go to the documentation of this file.
6package org.sleuthkit.autopsy.logicalimager.configuration;
8import java.text.NumberFormat;
9import java.text.ParseException;
10import javax.swing.text.NumberFormatter;
16final class DefaultToEmptyNumberFormatter
extends NumberFormatter {
18 private static final long serialVersionUID = 1L;
25 DefaultToEmptyNumberFormatter(NumberFormat format) {
30 public Object stringToValue(String
string)
31 throws ParseException {
32 Object returnValue =
null;
34 returnValue = super.stringToValue(
string);
35 }
catch (ParseException ignored) {
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.