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


Java Path类代码示例

本文整理汇总了Java中com.google.gwt.editor.client.Editor.Path的典型用法代码示例。如果您正苦于以下问题:Java Path类的具体用法?Java Path怎么用?Java Path使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: getPath

import com.google.gwt.editor.client.Editor.Path; //导入依赖的package包/类
private String getPath(VariableElement variableElement) {
  Path pathAnotation = variableElement.getAnnotation(Path.class);
  if (pathAnotation != null) {
    return pathAnotation.value();
  } else {
    return variableElement.getSimpleName()
                          .toString();
  }
}
 
开发者ID:FrankHossfeld,项目名称:gwt-editor-apt,代码行数:10,代码来源:EditorProcessingContext.java

示例2: getAttibuteName

import com.google.gwt.editor.client.Editor.Path; //导入依赖的package包/类
public String getAttibuteName() {
  String attributeName;

  Path pathAnotation = this.variableElement.getAnnotation(Path.class);
  if (pathAnotation != null) {
    attributeName = pathAnotation.value();
  } else {
    attributeName = variableElement.getSimpleName()
                                   .toString();
  }

  return attributeName;
}
 
开发者ID:FrankHossfeld,项目名称:gwt-editor-apt,代码行数:14,代码来源:EditorModel.java

示例3: key

import com.google.gwt.editor.client.Editor.Path; //导入依赖的package包/类
@Path("FeatureId")
ModelKeyProvider<VectorFeatureInfo> key();
 
开发者ID:geowe,项目名称:sig-seguimiento-vehiculos,代码行数:3,代码来源:VectorFeatureProperties.java

示例4: name

import com.google.gwt.editor.client.Editor.Path; //导入依赖的package包/类
@Path("FeatureId")	
LabelProvider<VectorFeatureInfo> name();
 
开发者ID:geowe,项目名称:sig-seguimiento-vehiculos,代码行数:3,代码来源:VectorFeatureProperties.java

示例5: key

import com.google.gwt.editor.client.Editor.Path; //导入依赖的package包/类
@Path("name")
ModelKeyProvider<LayerDef> key();
 
开发者ID:geowe,项目名称:sig-seguimiento-vehiculos,代码行数:3,代码来源:LayerDefProperties.java

示例6: nameLabel

import com.google.gwt.editor.client.Editor.Path; //导入依赖的package包/类
@Path("name")
LabelProvider<LayerDef> nameLabel();
 
开发者ID:geowe,项目名称:sig-seguimiento-vehiculos,代码行数:3,代码来源:LayerDefProperties.java

示例7: key

import com.google.gwt.editor.client.Editor.Path; //导入依赖的package包/类
@Path("id")
ModelKeyProvider<Geoprocess> key();
 
开发者ID:geowe,项目名称:sig-seguimiento-vehiculos,代码行数:3,代码来源:GeoprocessProperties.java

示例8: name

import com.google.gwt.editor.client.Editor.Path; //导入依赖的package包/类
@Path("name")
LabelProvider<Geoprocess> name();
 
开发者ID:geowe,项目名称:sig-seguimiento-vehiculos,代码行数:3,代码来源:GeoprocessProperties.java

示例9: key

import com.google.gwt.editor.client.Editor.Path; //导入依赖的package包/类
@Path("attributeName")
ModelKeyProvider<FeatureAttributeBean> key();
 
开发者ID:geowe,项目名称:sig-seguimiento-vehiculos,代码行数:3,代码来源:FeatureAttributeBeanProperties.java

示例10: nameLabel

import com.google.gwt.editor.client.Editor.Path; //导入依赖的package包/类
@Path("attributeName")
LabelProvider<FeatureAttributeBean> nameLabel();
 
开发者ID:geowe,项目名称:sig-seguimiento-vehiculos,代码行数:3,代码来源:FeatureAttributeBeanProperties.java

示例11: key

import com.google.gwt.editor.client.Editor.Path; //导入依赖的package包/类
@Path("id")
ModelKeyProvider<FeatureAttributeEditingDef> key();
 
开发者ID:geowe,项目名称:sig-seguimiento-vehiculos,代码行数:3,代码来源:FeatureAttributeEditingDefProperties.java

示例12: nameLabel

import com.google.gwt.editor.client.Editor.Path; //导入依赖的package包/类
@Path("name")
LabelProvider<FeatureAttributeEditingDef> nameLabel();
 
开发者ID:geowe,项目名称:sig-seguimiento-vehiculos,代码行数:3,代码来源:FeatureAttributeEditingDefProperties.java

示例13: key

import com.google.gwt.editor.client.Editor.Path; //导入依赖的package包/类
@Path("name")
ModelKeyProvider<StatusItem> key();
 
开发者ID:geowe,项目名称:sig-seguimiento-vehiculos,代码行数:3,代码来源:StatusPanelWidget.java

示例14: nameLabel

import com.google.gwt.editor.client.Editor.Path; //导入依赖的package包/类
@Path("name")
LabelProvider<StatusItem> nameLabel();
 
开发者ID:geowe,项目名称:sig-seguimiento-vehiculos,代码行数:3,代码来源:StatusPanelWidget.java

示例15: key

import com.google.gwt.editor.client.Editor.Path; //导入依赖的package包/类
@Path("id")
ModelKeyProvider<VectorLayerInfo> key();
 
开发者ID:geowe,项目名称:sig-seguimiento-vehiculos,代码行数:3,代码来源:VectorLayerProperties.java


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