blob: 31ef6b8bc814b7b7c1205b93143634fa9227fff6 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2013 Boeing
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Boeing - initial API and implementation
**********************************************************************/
package org.eclipse.osee.ats.api.column;
import org.eclipse.osee.ats.api.IAtsObject;
/**
* @author Donald G. Dunne
*/
public interface IAtsColumn {
public static final String CELL_ERROR_PREFIX = "!Error";
public String getColumnText(IAtsObject atsObject);
}