blob: 033dbb06445fb7c90908a1fe1141630117803b39 [file] [log] [blame]
/**
* Copyright (c) 2011 Forschungszentrum Juelich GmbH
* 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:
* Claudia Knobloch, FZ Juelich
*/
package org.eclipse.ptp.rm.lml.core.model;
/**
* This interface presents the layout of one column of a table,
*/
public interface ITableColumnLayout {
/**
* Getting the title of the column.
* @return title of the column
*/
public String getTitle();
/**
* Getting the width of the column.
* @return width of the table
*/
public int getWidth();
/**
* Getting the style (LEFT or RIGHT) of the column.
* @return style of the column
*/
public String getStyle();
}