本文整理了Java中com.google.gwt.user.client.ui.CheckBox.setHTML()
方法的一些代码示例,展示了CheckBox.setHTML()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。CheckBox.setHTML()
方法的具体详情如下:
包路径:com.google.gwt.user.client.ui.CheckBox
类名称:CheckBox
方法名:setHTML
暂无
代码示例来源:origin: com.google.gwt/gwt-servlet
/**
* Creates a check box with the specified text label.
*
* @param label the check box's label
* @param dir the text's direction. Note that {@code DEFAULT} means direction
* should be inherited from the widget's parent element.
*/
public CheckBox(SafeHtml label, Direction dir) {
this();
setHTML(label, dir);
}
代码示例来源:origin: com.google.gwt/gwt-servlet
/**
* Creates a check box with the specified text label.
*
* @param label the check box's label
* @param asHTML <code>true</code> to treat the specified label as html
*/
public CheckBox(@IsSafeHtml String label, boolean asHTML) {
this();
if (asHTML) {
setHTML(label);
} else {
setText(label);
}
}
代码示例来源:origin: com.google.gwt/gwt-servlet
/**
* Creates a check box with the specified text label.
*
* @param label the check box's label
* @param directionEstimator A DirectionEstimator object used for automatic
* direction adjustment. For convenience,
* {@link #DEFAULT_DIRECTION_ESTIMATOR} can be used.
*/
public CheckBox(SafeHtml label, DirectionEstimator directionEstimator) {
this();
setDirectionEstimator(directionEstimator);
setHTML(label.asString());
}
代码示例来源:origin: net.wetheinter/gwt-user
/**
* Creates a check box with the specified text label.
*
* @param label the check box's label
* @param dir the text's direction. Note that {@code DEFAULT} means direction
* should be inherited from the widget's parent element.
*/
public CheckBox(SafeHtml label, Direction dir) {
this();
setHTML(label, dir);
}
代码示例来源:origin: com.vaadin.external.gwt/gwt-user
/**
* Creates a check box with the specified text label.
*
* @param label the check box's label
* @param dir the text's direction. Note that {@code DEFAULT} means direction
* should be inherited from the widget's parent element.
*/
public CheckBox(SafeHtml label, Direction dir) {
this();
setHTML(label, dir);
}
代码示例来源:origin: com.vaadin.external.gwt/gwt-user
/**
* Creates a check box with the specified text label.
*
* @param label the check box's label
* @param asHTML <code>true</code> to treat the specified label as html
*/
public CheckBox(String label, boolean asHTML) {
this();
if (asHTML) {
setHTML(label);
} else {
setText(label);
}
}
代码示例来源:origin: net.wetheinter/gwt-user
/**
* Creates a check box with the specified text label.
*
* @param label the check box's label
* @param asHTML <code>true</code> to treat the specified label as html
*/
public CheckBox(String label, boolean asHTML) {
this();
if (asHTML) {
setHTML(label);
} else {
setText(label);
}
}
代码示例来源:origin: net.wetheinter/gwt-user
/**
* Creates a check box with the specified text label.
*
* @param label the check box's label
* @param directionEstimator A DirectionEstimator object used for automatic
* direction adjustment. For convenience,
* {@link #DEFAULT_DIRECTION_ESTIMATOR} can be used.
*/
public CheckBox(SafeHtml label, DirectionEstimator directionEstimator) {
this();
setDirectionEstimator(directionEstimator);
setHTML(label.asString());
}
代码示例来源:origin: com.vaadin.external.gwt/gwt-user
/**
* Creates a check box with the specified text label.
*
* @param label the check box's label
* @param directionEstimator A DirectionEstimator object used for automatic
* direction adjustment. For convenience,
* {@link #DEFAULT_DIRECTION_ESTIMATOR} can be used.
*/
public CheckBox(SafeHtml label, DirectionEstimator directionEstimator) {
this();
setDirectionEstimator(directionEstimator);
setHTML(label.asString());
}
代码示例来源:origin: bedatadriven/activityinfo
private void editLabel(ResourceId id) {
EnumItem enumItem = enumValueForId(id);
String newLabel = Window.prompt(I18N.CONSTANTS.enterNameForOption(), enumItem.getLabel());
if (!Strings.isNullOrEmpty(newLabel)) {
enumItem.setLabel(newLabel);
controlForId(id).setHTML(designLabel(newLabel));
}
}
代码示例来源:origin: org.eclipse.che.plugin/che-plugin-git-ext-git
/** Create view. */
@Inject
protected CommitViewImpl(GitResources res, GitLocalizationConstant locale) {
this.res = res;
this.locale = locale;
this.message = new ShiftableTextArea();
this.ensureDebugId("git-commit-window");
this.setTitle(locale.commitTitle());
Widget widget = uiBinder.createAndBindUi(this);
this.setWidget(widget);
btnCancel =
addFooterButton(
locale.buttonCancel(), "git-commit-cancel", event -> delegate.onCancelClicked());
btnCommit =
addFooterButton(
locale.buttonCommit(), "git-commit-commit", event -> delegate.onCommitClicked(), true);
remoteBranches = new ListBox();
remoteBranches.setEnabled(false);
remoteBranches.getElement().setAttribute("style", "width: 230px");
pushAfterCommit = new CheckBox();
pushAfterCommit.setHTML(locale.commitPushCheckboxTitle());
pushAfterCommit.ensureDebugId("push-after-commit-check-box");
pushAfterCommit.addValueChangeHandler(event -> remoteBranches.setEnabled(event.getValue()));
pushAfterCommit.addStyleName(res.gitCSS().spacing());
addFooterWidget(pushAfterCommit);
addFooterWidget(remoteBranches);
}
内容来源于网络,如有侵权,请联系作者删除!