当前位置: 首页>>代码示例>>Java>>正文


Java SafeHtmlUtils.EMPTY_SAFE_HTML属性代码示例

本文整理汇总了Java中com.google.gwt.safehtml.shared.SafeHtmlUtils.EMPTY_SAFE_HTML属性的典型用法代码示例。如果您正苦于以下问题:Java SafeHtmlUtils.EMPTY_SAFE_HTML属性的具体用法?Java SafeHtmlUtils.EMPTY_SAFE_HTML怎么用?Java SafeHtmlUtils.EMPTY_SAFE_HTML使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在com.google.gwt.safehtml.shared.SafeHtmlUtils的用法示例。


在下文中一共展示了SafeHtmlUtils.EMPTY_SAFE_HTML属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: onLoad

@Override
public void onLoad (PreloadedImage image) {
	image.addStyleName("img-rounded");
	image.addStyleName("col-xs-" + (int) (12 / IMAGES_PER_ROW));

	if ((resources.size() - 1) % IMAGES_PER_ROW == 0) {
		currentResourceRow = new HTMLPanel(
				SafeHtmlUtils.EMPTY_SAFE_HTML);
		currentResourceRow.addStyleName("row");
		pnlImagePreviews.add(currentResourceRow);
	}

	currentResourceRow.add(image);
}
 
开发者ID:billy1380,项目名称:blogwt,代码行数:14,代码来源:ImagePropertyPart.java

示例2: render

@Override
public void render (Context context, Post value, SafeHtmlBuilder builder) {
	SafeUri link = PageTypeHelper.asHref(PageType.PostDetailPageType,
			PostHelper.getSlug(value));
	SafeHtml published = Templates.INSTANCE.notPublished(DateTimeHelper
			.ago(value.created));

	if (value.published != null) {
		published = Templates.INSTANCE.publishedDate(DateTimeHelper
				.ago(value.published));
	}

	String body = "Empty... :imp:";

	if (value.summary != null && value.summary.length() > 0) {
		body = value.summary;
	} else if (value.content != null && value.content.body != null
			&& value.content.body.length() > 0) {
		body = value.content.body;
	}

	SafeHtml author = SafeHtmlUtils.EMPTY_SAFE_HTML;

	if (PropertyController.get().booleanProperty(
			PropertyHelper.POST_SHOW_AUTHOR, false)) {
		author = Templates.INSTANCE
				.author(UriUtils.fromString(value.author.avatar + "?s="
						+ UserHelper.AVATAR_HEADER_SIZE + "&default=retro"),
						UserHelper.handle(value.author));
	}

	RENDERER.render(builder, link, SafeHtmlUtils
			.fromTrustedString(PostHelper.makeHeading2(value.title)),
			SafeHtmlUtils.fromTrustedString(PostHelper.makeMarkup(body)),
			author, published,
			value.listed.booleanValue() ? SafeHtmlUtils.EMPTY_SAFE_HTML
					: Templates.INSTANCE.notVisible());
}
 
开发者ID:billy1380,项目名称:blogwt,代码行数:38,代码来源:PostSummaryCell.java

示例3: html

@Column(header = "SafeHtml", cellType = CustomSafeHtmlCell.class)
public SafeHtml html()
{
   return SafeHtmlUtils.EMPTY_SAFE_HTML;
}
 
开发者ID:symulakr,项目名称:generators-example,代码行数:5,代码来源:CustomerExt.java


注:本文中的com.google.gwt.safehtml.shared.SafeHtmlUtils.EMPTY_SAFE_HTML属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。