blob: dbfc8f26adae64eba374486eda8df921a4bbcb8d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2013 Oracle and/or its affiliates. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation
*
******************************************************************************/
package org.eclipse.persistence.tools.utility.tests.model.value.swing;
import org.eclipse.persistence.tools.utility.model.value.swing.TableModelAdapter;
import org.eclipse.persistence.tools.utility.tests.model.value.swing.TableModelAdapterTests.PersonColumnAdapter;
/**
* Make it easy to test the table model adapter and
* renderers without any editing allowed.
*/
public class ReadOnlyTableModelAdapterUITest
extends TableModelAdapterUITest
{
public static void main(String[] args) throws Exception {
new ReadOnlyTableModelAdapterUITest().exec(args);
}
protected ReadOnlyTableModelAdapterUITest() {
super();
}
@Override
protected TableModelAdapter.ColumnAdapter buildColumnAdapter() {
return new PersonColumnAdapter() {
@Override
public boolean columnIsEditable(int index) {
return false;
}
};
}
}