本文整理匯總了Java中org.geomajas.configuration.FontStyleInfo.getWeight方法的典型用法代碼示例。如果您正苦於以下問題:Java FontStyleInfo.getWeight方法的具體用法?Java FontStyleInfo.getWeight怎麽用?Java FontStyleInfo.getWeight使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.geomajas.configuration.FontStyleInfo
的用法示例。
在下文中一共展示了FontStyleInfo.getWeight方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: FontStyle
import org.geomajas.configuration.FontStyleInfo; //導入方法依賴的package包/類
public FontStyle(FontStyleInfo info) {
this.fillColor = info.getColor();
this.fontSize = info.getSize();
this.fontFamily = info.getFamily();
this.fontWeight = info.getWeight();
this.fontStyle = info.getStyle();
}
示例2: getCssStyle
import org.geomajas.configuration.FontStyleInfo; //導入方法依賴的package包/類
private String getCssStyle(FontStyleInfo style) {
StringBuilder css = new StringBuilder();
if (style.getColor() != null && !"".equals(style.getColor())) {
css.append("color:");
css.append(style.getColor());
css.append(";");
}
if (style.getFamily() != null && !"".equals(style.getFamily())) {
css.append("font-family:");
css.append(style.getFamily());
css.append(";");
}
if (style.getStyle() != null && !"".equals(style.getStyle())) {
css.append("font-style:");
css.append(style.getStyle());
css.append(";");
}
if (style.getWeight() != null && !"".equals(style.getWeight())) {
css.append("font-weight:");
css.append(style.getWeight());
css.append(";");
}
if (style.getSize() >= 0) {
css.append("font-size:");
css.append(style.getSize());
css.append("px;");
}
return css.toString();
}