/******************************************************************************* * Copyright (c) 2012, 2013, 2015 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 * Aparna Argade (Cadence Design Systems, Inc.) - Simplification for SWTBotNatTable tests ******************************************************************************/ package org.eclipse.swtbot.nebula.nattable.finder.test2; public class DataModelConstants { public static final int FIRSTNAME_COLUMN_POSITION = 0; public static final int LASTNAME_COLUMN_POSITION = 1; public static final int PERSON_NUMBER_OF_COLUMNS = 2; public static final String FIRSTNAME_PROPERTYNAME = "firstName"; public static final String LASTNAME_PROPERTYNAME = "lastName"; public static final String[] PERSON_PROPERTY_NAMES = { FIRSTNAME_PROPERTYNAME, LASTNAME_PROPERTYNAME }; }