124125126127128129130131132133134
} catch (Throwable t) { logger.log(Level.WARNING, "Unable to convert {0} to Long.", source); throw new FrameworkException(declaringClass.getSimpleName(), new NumberToken(LongProperty.this)); } } return null; }
155156157158159160161162163164165
} catch (Throwable t) { logger.log(Level.WARNING, "Unable to convert {0} to Double.", source); throw new FrameworkException(declaringClass.getSimpleName(), new NumberToken(DoubleProperty.this)); } } return null; }
123124125126127128129130131132133
} catch (Throwable t) { logger.log(Level.WARNING, "Unable to convert {0} to Integer.", source); throw new FrameworkException(declaringClass.getSimpleName(), new NumberToken(IntProperty.this)); } } return null;