本文整理汇总了Java中com.google.gwt.text.shared.SimpleSafeHtmlRenderer类的典型用法代码示例。如果您正苦于以下问题:Java SimpleSafeHtmlRenderer类的具体用法?Java SimpleSafeHtmlRenderer怎么用?Java SimpleSafeHtmlRenderer使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
SimpleSafeHtmlRenderer类属于com.google.gwt.text.shared包,在下文中一共展示了SimpleSafeHtmlRenderer类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: IconCell
import com.google.gwt.text.shared.SimpleSafeHtmlRenderer; //导入依赖的package包/类
/**
* Construct a new {@link IconCell} with the specified icon type and icon size
* @param iconType
* @param iconSize
*/
public IconCell(IconType iconType,
IconSize iconSize) {
super(SimpleSafeHtmlRenderer.getInstance(),
CLICK,
KEYDOWN);
this.iconType = iconType;
this.iconSize = iconSize;
}
示例2: ContainerActionsCell
import com.google.gwt.text.shared.SimpleSafeHtmlRenderer; //导入依赖的package包/类
public ContainerActionsCell(final ContainersProvider containersProvider, final DoContainerActionCallback callback) {
super(SimpleSafeHtmlRenderer.getInstance(), "click", "keydown");
this.containersProvider = containersProvider;
this.callback = callback;
}
示例3: ExpandableCell
import com.google.gwt.text.shared.SimpleSafeHtmlRenderer; //导入依赖的package包/类
public <T extends TreeNode<T>> ExpandableCell(TreeGrid<T> treeGrid) {
super(SimpleSafeHtmlRenderer.getInstance(), "click", "keydown");
this.treeGrid = treeGrid;
}
示例4: PopoverTextCell
import com.google.gwt.text.shared.SimpleSafeHtmlRenderer; //导入依赖的package包/类
public PopoverTextCell(final Placement placement) {
super(SimpleSafeHtmlRenderer.getInstance(),
MOUSEOVER,
MOUSEOUT);
this.placement = placement;
}
示例5: LinkCell
import com.google.gwt.text.shared.SimpleSafeHtmlRenderer; //导入依赖的package包/类
public LinkCell() {
this(SimpleSafeHtmlRenderer.getInstance());
}
示例6: QButtonCell
import com.google.gwt.text.shared.SimpleSafeHtmlRenderer; //导入依赖的package包/类
public QButtonCell() {
this(SimpleSafeHtmlRenderer.getInstance());
}
示例7: CellDateImpl
import com.google.gwt.text.shared.SimpleSafeHtmlRenderer; //导入依赖的package包/类
/**
* Constructs a new DatePickerCell that uses the date/time format given by
* {@link DateTimeFormat#getFullDateFormat}.
*/
@SuppressWarnings("deprecation")
public CellDateImpl() {
this(DateTimeFormat.getFullDateFormat(),
SimpleSafeHtmlRenderer.getInstance());
}
示例8: CellTextImpl
import com.google.gwt.text.shared.SimpleSafeHtmlRenderer; //导入依赖的package包/类
public CellTextImpl(String align) {
this(SimpleSafeHtmlRenderer.getInstance(), align);
}
示例9: DblClickTextCell
import com.google.gwt.text.shared.SimpleSafeHtmlRenderer; //导入依赖的package包/类
public DblClickTextCell() {
super(SimpleSafeHtmlRenderer.getInstance(), "dblclick");
}
示例10: ButtonCell
import com.google.gwt.text.shared.SimpleSafeHtmlRenderer; //导入依赖的package包/类
public ButtonCell() {
super(SimpleSafeHtmlRenderer.getInstance());
}
示例11: FixedDatePickerCell
import com.google.gwt.text.shared.SimpleSafeHtmlRenderer; //导入依赖的package包/类
/**
* Constructs a new DatePickerCell that uses the date/time format given by
* {@link DateTimeFormat#getFullDateFormat}.
*/
@SuppressWarnings("deprecation")
public FixedDatePickerCell() {
this(DateTimeFormat.getFullDateFormat(),
SimpleSafeHtmlRenderer.getInstance());
}
示例12: WaterMarkEditTextCell
import com.google.gwt.text.shared.SimpleSafeHtmlRenderer; //导入依赖的package包/类
/**
* Construct a new WaterMarkEditTextCell that will use a
* {@link SimpleSafeHtmlRenderer}.
*/
public WaterMarkEditTextCell( String watermark ) {
this( SimpleSafeHtmlRenderer.getInstance(),
watermark );
}
示例13: TextCell
import com.google.gwt.text.shared.SimpleSafeHtmlRenderer; //导入依赖的package包/类
/**
* Constructs a TextCell that uses a {@link SimpleSafeHtmlRenderer} to render
* its text.
*/
public TextCell() {
super(SimpleSafeHtmlRenderer.getInstance());
}
示例14: TaskGridNameCell1
import com.google.gwt.text.shared.SimpleSafeHtmlRenderer; //导入依赖的package包/类
/**
* Construct a new EditTextCell that will use a
* {@link SimpleSafeHtmlRenderer}.
*/
public TaskGridNameCell1() {
this(SimpleSafeHtmlRenderer.getInstance());
}
示例15: TaskGridNameCell
import com.google.gwt.text.shared.SimpleSafeHtmlRenderer; //导入依赖的package包/类
/**
* Construct a new EditTextCell that will use a
* {@link SimpleSafeHtmlRenderer}.
*/
public TaskGridNameCell() {
this(SimpleSafeHtmlRenderer.getInstance());
}