blob: b75cf052f19dfec801040e4631ec567c139ae648 [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.base;
import org.eclipse.actf.model.dom.odf.draw.FrameElement;
import org.eclipse.actf.model.dom.odf.text.SequenceElement;
/**
* Graphics ODF elements that have <draw:frame> as parent should implement this interface.
*/
public interface EmbedDrawingObjectElement extends DrawingObjectBaseElement {
/**
* Return <draw:framw> element
*
* @return FrameElement
*/
public FrameElement getFrameElement();
/**
* Return <text:sequence> element
*
* @return SequenceElement
*/
public SequenceElement getTextSequenceElement();
}