/******************************************************************************* * 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.test1; public class NumberValues { private int columnOne; private int columnTwo; private int columnThree; private int columnFour; private int columnFive; public NumberValues() { } public int getColumnOneNumber() { return this.columnOne; } public void setColumnOneNumber(int columnOneNumber) { this.columnOne = columnOneNumber; } public int getColumnTwoNumber() { return this.columnTwo; } public void setColumnTwoNumber(int columnTwoNumber) { this.columnTwo = columnTwoNumber; } public int getColumnThreeNumber() { return this.columnThree; } public void setColumnThreeNumber(int columnThreeNumber) { this.columnThree = columnThreeNumber; } public int getColumnFourNumber() { return this.columnFour; } public void setColumnFourNumber(int columnFourNumber) { this.columnFour = columnFourNumber; } public int getColumnFiveNumber() { return this.columnFive; } public void setColumnFiveNumber(int columnFiveNumber) { this.columnFive = columnFiveNumber; } }