blob: a68683c0c4a9db034d229014e4906f9a6179214e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 IBM Corporation 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:
* Tatsuya ISHIHARA - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.model.dom.odf.table;
import org.eclipse.actf.model.dom.odf.base.ODFElement;
import org.eclipse.actf.model.dom.odf.content.IStylable;
import org.eclipse.actf.model.dom.odf.range.ITextElementContainer;
public interface TableCellElement extends ODFElement, IStylable,
ITextElementContainer {
public String getAttrTableStyleName();
public String getAttrOfficeValue();
public String getAttrOfficeValueType();
public String getAttrTableFormula();
public int getAttrTableNumberColumnsRepeated();
public int getAttrTableNumberColumnsSpanned();
public int getTableIndex();
public TableElement getTableElement();
public int getTableColIndex();
public int getTableRowIndex();
public int getTableColSize();
public int getTableRowSize();
public void setValue(String value);
public String getValue();
}