/******************************************************************************* * Copyright (c) 2012 Original authors and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Original authors and others - initial API and implementation ******************************************************************************/ package org.eclipse.nebula.widgets.nattable.layer.config; import org.eclipse.nebula.widgets.nattable.config.AggregateConfiguration; import org.eclipse.nebula.widgets.nattable.grid.GridRegion; import org.eclipse.nebula.widgets.nattable.grid.layer.RowHeaderLayer; import org.eclipse.nebula.widgets.nattable.resize.config.DefaultRowResizeBindings; /** * Default setup for the Row header area. Added by the {@link RowHeaderLayer} * Override the methods in this class to customize style / UI bindings. * * @see GridRegion */ public class DefaultRowHeaderLayerConfiguration extends AggregateConfiguration { public DefaultRowHeaderLayerConfiguration() { addRowHeaderStyleConfig(); addRowHeaderUIBindings(); } protected void addRowHeaderStyleConfig() { addConfiguration(new DefaultRowHeaderStyleConfiguration()); } protected void addRowHeaderUIBindings() { addConfiguration(new DefaultRowResizeBindings()); } }