String propUri = pv.getPropUri();
if ( propName == null ) {
propName = "?";
}
if ( propUri != null ) {
Hyperlink link = new Hyperlink(propUri, propUri);
// Hyperlink link = new Hyperlink(propName, propUri);
if ( propUri != null ) {
link.setTitle(propUri);
}
flexPanel.setWidget(row, 0, link);
}
else {
htmlStr = propName;
HTML html = new HTML("<b>" +htmlStr+ "</b>:");
if ( propUri != null ) {
html.setTitle(propUri);
}
flexPanel.setWidget(row, 0, html);
}
cf.setAlignment(row, 0, HasHorizontalAlignment.ALIGN_RIGHT, HasVerticalAlignment.ALIGN_TOP);
// column 1
String valueName = pv.getValueName();
String valueUri = pv.getValueUri();
if ( valueName == null ) {
valueName = "?";
}
if ( valueUri != null ) {
Hyperlink link = new Hyperlink(valueUri, valueUri);
// Hyperlink link = new Hyperlink(valueName, valueUri);
if ( valueUri != null ) {
link.setTitle(valueUri);
}
flexPanel.setWidget(row, 1, link);
}
else {
htmlStr = valueName;