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


Java Table.setColumnHeader方法代码示例

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


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

示例1: setTableColumnDetails

import com.vaadin.ui.Table; //导入方法依赖的package包/类
private void setTableColumnDetails(final Table table) {

        table.setColumnHeader(PROVIDED_FILE_NAME, i18n.getMessage("upload.file.name"));
        table.setColumnHeader(SIZE, i18n.getMessage("upload.size"));
        if (fullWindowMode) {
            table.setColumnHeader(SHA1HASH, i18n.getMessage("upload.sha1"));
            table.setColumnHeader(MD5HASH, i18n.getMessage("upload.md5"));
        }
        table.setColumnHeader(CREATE_MODIFIED_DATE_UPLOAD, i18n.getMessage("upload.last.modified.date"));
        if (!readOnly) {
            table.setColumnHeader(ACTION, i18n.getMessage("upload.action"));
        }

        table.setColumnExpandRatio(PROVIDED_FILE_NAME, 3.5F);
        table.setColumnExpandRatio(SIZE, 2F);
        if (fullWindowMode) {
            table.setColumnExpandRatio(SHA1HASH, 2.8F);
            table.setColumnExpandRatio(MD5HASH, 2.4F);
        }
        table.setColumnExpandRatio(CREATE_MODIFIED_DATE_UPLOAD, 3F);
        if (!readOnly) {
            table.setColumnExpandRatio(ACTION, 2.5F);
        }

        table.setVisibleColumns(getVisbleColumns().toArray());
    }
 
开发者ID:eclipse,项目名称:hawkbit,代码行数:27,代码来源:ArtifactDetailsLayout.java

示例2: setupTablePropertyColumn

import com.vaadin.ui.Table; //导入方法依赖的package包/类
/**
 * Setup column configuration for given <code>property</code> using its {@link PropertyColumn} definition.
 * @param property Property to which the column is bound
 * @param table Table to setup
 */
protected void setupTablePropertyColumn(P property, Table table) {
	PropertyColumn<T, P> propertyColumn = getPropertyColumn(property);
	if (propertyColumn != null) {
		// header
		if (propertyColumn.getCaption() != null) {
			String header = LocalizationContext.translate(propertyColumn.getCaption(), true);
			if (header != null) {
				table.setColumnHeader(property, header);
			}
		}
		// alignment
		if (propertyColumn.getAlignment() != null) {
			switch (propertyColumn.getAlignment()) {
			case CENTER:
				table.setColumnAlignment(property, Align.CENTER);
				break;
			case LEFT:
				table.setColumnAlignment(property, Align.LEFT);
				break;
			case RIGHT:
				table.setColumnAlignment(property, Align.RIGHT);
				break;
			default:
				break;
			}
		}
		// width
		if (propertyColumn.getWidth() > -1) {
			table.setColumnWidth(property, propertyColumn.getWidth());
		}
		// expand
		if (propertyColumn.getTableExpandRatio() > -1) {
			table.setColumnExpandRatio(property, propertyColumn.getTableExpandRatio());
		}
		// hiding
		if (propertyColumn.isHidable()) {
			table.setColumnCollapsible(property, true);
			if (propertyColumn.isHidden()) {
				table.setColumnCollapsed(property, true);
			}
		} else {
			table.setColumnCollapsible(property, false);
		}
		// icon
		if (propertyColumn.getIcon() != null) {
			table.setColumnIcon(property, propertyColumn.getIcon());
		}
	}
}
 
开发者ID:holon-platform,项目名称:holon-vaadin7,代码行数:55,代码来源:DefaultItemListing.java

示例3: initProcessInstancesTable

import com.vaadin.ui.Table; //导入方法依赖的package包/类
protected void initProcessInstancesTable() {
  ProcessInstanceTableLazyQuery query = new ProcessInstanceTableLazyQuery(processDefinition.getId());
  
  // Header
  Label instancesTitle = new Label(i18nManager.getMessage(Messages.PROCESS_INSTANCES) + " (" + query.size() + ")");
  instancesTitle.addStyleName(ExplorerLayout.STYLE_H3);
  instancesTitle.addStyleName(ExplorerLayout.STYLE_DETAIL_BLOCK);
  instancesTitle.addStyleName(ExplorerLayout.STYLE_NO_LINE);
  detailPanelLayout.addComponent(instancesTitle);

  if (query.size() > 0) {
    
    Label emptySpace = new Label("&nbsp;", Label.CONTENT_XHTML);
    detailPanelLayout.addComponent(emptySpace);
    
    Table instancesTable = new Table();
    instancesTable.setWidth(400, UNITS_PIXELS);
    if (query.size() > 6) {
      instancesTable.setPageLength(6);
    } else {
      instancesTable.setPageLength(query.size());
    }
    
    LazyLoadingContainer container = new LazyLoadingContainer(query);
    instancesTable.setContainerDataSource(container);
    
    // container props
    instancesTable.addContainerProperty(AlfrescoProcessInstanceTableItem.PROPERTY_ID, String.class, null);
    instancesTable.addContainerProperty(AlfrescoProcessInstanceTableItem.PROPERTY_BUSINESSKEY, String.class, null);
    instancesTable.addContainerProperty(AlfrescoProcessInstanceTableItem.PROPERTY_ACTIONS, Component.class, null);
    
    // column alignment
    instancesTable.setColumnAlignment(AlfrescoProcessInstanceTableItem.PROPERTY_ACTIONS, Table.ALIGN_CENTER);
    
    // column header
    instancesTable.setColumnHeader(AlfrescoProcessInstanceTableItem.PROPERTY_ID, i18nManager.getMessage(Messages.PROCESS_INSTANCE_ID));
    instancesTable.setColumnHeader(AlfrescoProcessInstanceTableItem.PROPERTY_BUSINESSKEY, i18nManager.getMessage(Messages.PROCESS_INSTANCE_BUSINESSKEY));
    instancesTable.setColumnHeader(AlfrescoProcessInstanceTableItem.PROPERTY_ACTIONS, i18nManager.getMessage(Messages.PROCESS_INSTANCE_ACTIONS));
    
    instancesTable.setEditable(false);
    instancesTable.setSelectable(true);
    instancesTable.setNullSelectionAllowed(false);
    instancesTable.setSortDisabled(true);
    detailPanelLayout.addComponent(instancesTable);
    
  } else {
    Label noInstances = new Label(i18nManager.getMessage(Messages.PROCESS_NO_INSTANCES));
    detailPanelLayout.addComponent(noInstances);
  }
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:51,代码来源:AlfrescoProcessDefinitionDetailPanel.java


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