blob: 89ff9f8fdd539795881ee9b99b64a90bfab79892 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Holger Voormann 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:
* Holger Voormann - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xml.vex.ui.internal.handlers;
/**
* This adapter class provides empty default implementations for the methods
* of {@link ITableCellCallback}. Callback implementations can extend this class
* and override only the methods which they are interested in.
*/
public abstract class TableCellCallbackAdapter implements ITableCellCallback {
public void endRow(Object row, int rowIndex) {
// NOP (adapter pattern)
}
public void onCell(Object row, Object cell, int rowIndex, int cellIndex) {
// NOP (adapter pattern)
}
public void startRow(Object row, int rowIndex) {
// NOP (adapter pattern)
}
}