blob: 7446afbb2bf6afe1b1ea87ca3f5faf79c3642990 [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.draw;
import org.eclipse.actf.model.dom.odf.base.EmbedDrawingObjectElement;
/**
* Interface for <draw:object> element.
*/
public interface ObjectElement extends EmbedDrawingObjectElement {
public String getAttrDrawNotifyOnUpdateOfRanges();
public void setAttrXlinkHref(String href);
public String getAttrXlinkHref();
public String getAttrXlinkType();
public String getAttrXlinkShow();
public String getAttrXlinkActuate();
public boolean isPresentationTable();
}