}
@Override
public Vote previewExpandedChange(Rollup rollup) {
if (this.component == null) {
BXMLSerializer bxmlSerializer = new BXMLSerializer();
try {
this.component = (Component)bxmlSerializer.readObject(KitchenSink.class, "info.bxml");
} catch(IOException exception) {
throw new RuntimeException(exception);
} catch(SerializationException exception) {
throw new RuntimeException(exception);
}
this.infoPivotVersion = (Label)bxmlSerializer.getNamespace().get("info-pivot-version");
this.infoPivotVersion.setText(this.infoPivotVersion.getText() + ApplicationContext.getPivotVersion().toString());
this.infoPivotOrigin = (Label)bxmlSerializer.getNamespace().get("info-pivot-origin");
String origin = (ApplicationContext.getOrigin() != null) ? ApplicationContext.getOrigin().toString() : "";
this.infoPivotOrigin.setText(this.infoPivotOrigin.getText() + "\"" + origin + "\"");
this.infoJavaVersion = (Label)bxmlSerializer.getNamespace().get("info-java-version");
// String javaVersion = ApplicationContext.getJVMVersion().toString();
String javaVersion = System.getProperty("java.version");
this.infoJavaVersion.setText(this.infoJavaVersion.getText() + javaVersion);
rollup.setContent(this.component);