// Attempt to load the stored properties from the user's local
// repository and set the initial values in the view manager's
// properties
try {
ViewProperties properties =
ViewPropertiesUtils.loadViewProperties();
ViewManager manager = ViewManager.getViewManager();
ViewProperties viewProperties = manager.getViewProperties();
viewProperties.setFieldOfView(properties.getFieldOfView());
viewProperties.setFrontClip(properties.getFrontClip());
viewProperties.setBackClip(properties.getBackClip());
} catch (java.lang.Exception excp) {
LOGGER.log(Level.WARNING,
"Unable to read user's view properties", excp);
}
}