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


Java TakesValueEditor.of方法代码示例

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


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

示例1: FormItemEditor

import com.google.gwt.editor.client.adapters.TakesValueEditor; //导入方法依赖的package包/类
public FormItemEditor(FormItem formItem) {
	item = formItem;
	item.setValidators(validator);
	editor = TakesValueEditor.of(new TakesValue<T>() {

		@Override
		public void setValue(T value) {
			item.setValue(value);
		}

		@Override
		public T getValue() {
			return (T) item.getValue();
		}
	});
}
 
开发者ID:geomajas,项目名称:geomajas-project-client-gwt,代码行数:17,代码来源:FormItemEditor.java

示例2: asEditor

import com.google.gwt.editor.client.adapters.TakesValueEditor; //导入方法依赖的package包/类
@Override
public LeafValueEditor<Boolean> asEditor() {
    if (editor == null) {
        editor = TakesValueEditor.of(this);
    }
    return editor;
}
 
开发者ID:GwtMaterialDesign,项目名称:gwt-material,代码行数:8,代码来源:BaseCheckBox.java

示例3: asEditor

import com.google.gwt.editor.client.adapters.TakesValueEditor; //导入方法依赖的package包/类
@Override
public LeafValueEditor<Integer> asEditor() {
	if (editor == null) {
		editor = TakesValueEditor.of(this);
	}
	return editor;
}
 
开发者ID:ahome-it,项目名称:ahome-touch,代码行数:8,代码来源:Slider.java

示例4: asEditor

import com.google.gwt.editor.client.adapters.TakesValueEditor; //导入方法依赖的package包/类
@Override
public LeafValueEditor<Boolean> asEditor() {
	if (editor == null) {
		editor = TakesValueEditor.of(this);
	}
	return editor;
}
 
开发者ID:ahome-it,项目名称:ahome-touch,代码行数:8,代码来源:CheckBox.java

示例5: asEditor

import com.google.gwt.editor.client.adapters.TakesValueEditor; //导入方法依赖的package包/类
@Override
public LeafValueEditor<T> asEditor() {
	if (editor == null) {
		editor = TakesValueEditor.of(this);
	}
	return editor;
}
 
开发者ID:ahome-it,项目名称:ahome-touch,代码行数:8,代码来源:Text.java

示例6: asEditor

import com.google.gwt.editor.client.adapters.TakesValueEditor; //导入方法依赖的package包/类
/**
 * Returns a {@link TakesValueEditor} backed by the ValueListBox.
 */
public TakesValueEditor<List<T>> asEditor() {
  if (editor == null) {
    editor = TakesValueEditor.of(this);
  }
  return editor;
}
 
开发者ID:kaaproject,项目名称:kaa,代码行数:10,代码来源:MultiValueListBox.java

示例7: asEditor

import com.google.gwt.editor.client.adapters.TakesValueEditor; //导入方法依赖的package包/类
/**
 * Returns a {@link TakesValueEditor} backed by the ValueListBox.
 */
@Override
public TakesValueEditor<Collection<T>> asEditor() {
    if (editor == null) {
        editor = TakesValueEditor.of(this);
    }
    return editor;
}
 
开发者ID:salk31,项目名称:RedQueryBuilder,代码行数:11,代码来源:ValueMultiListBox.java

示例8: asEditor

import com.google.gwt.editor.client.adapters.TakesValueEditor; //导入方法依赖的package包/类
@Override
public LeafValueEditor<Boolean> asEditor() {
    if ( editor == null ) {
        editor = TakesValueEditor.of( this );
    }
    return editor;
}
 
开发者ID:nmorel,项目名称:gwt-jackson,代码行数:8,代码来源:InputCheckbox.java

示例9: asEditor

import com.google.gwt.editor.client.adapters.TakesValueEditor; //导入方法依赖的package包/类
@Override
public LeafValueEditor<T> asEditor() {
    if (editor == null) {
        editor = TakesValueEditor.of(this);
    }
    return editor;
}
 
开发者ID:gwtbootstrap3,项目名称:gwtbootstrap3-extras,代码行数:8,代码来源:SliderBase.java

示例10: asEditor

import com.google.gwt.editor.client.adapters.TakesValueEditor; //导入方法依赖的package包/类
@Override
public LeafValueEditor<Integer> asEditor() {
    if (editor == null) {
        editor = TakesValueEditor.of(this);
    }
    return editor;
}
 
开发者ID:paulvi,项目名称:touch4j,代码行数:8,代码来源:Slider.java

示例11: asEditor

import com.google.gwt.editor.client.adapters.TakesValueEditor; //导入方法依赖的package包/类
public LeafValueEditor<Date> asEditor() {
  if (editor == null) {
    editor = TakesValueEditor.of(this);
  }
  return editor;
}
 
开发者ID:Peergos,项目名称:Peergos,代码行数:7,代码来源:DateButton.java


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