/******************************************************************************* * Copyright (c) 2006-2012 * Software Technology Group, Dresden University of Technology * DevBoost GmbH, Berlin, Amtsgericht Charlottenburg, HRB 140026 * * 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: * Software Technology Group - TU Dresden, Germany; * DevBoost GmbH - Berlin, Germany * - initial API and implementation ******************************************************************************/ /** * <copyright> * </copyright> * * $Id$ */ package org.oasisopen.names.tc.opendocument.xmlns.meta; import org.eclipse.emf.ecore.EObject; import org.w3.xlink.ShowType2; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Hyperlink Behaviour Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.meta.HyperlinkBehaviourType#getShow <em>Show</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.meta.HyperlinkBehaviourType#getTargetFrameName <em>Target Frame Name</em>}</li> * </ul> * </p> * * @see org.oasisopen.names.tc.opendocument.xmlns.meta.MetaPackage#getHyperlinkBehaviourType() * @model extendedMetaData="name='hyperlink-behaviour_._type' kind='empty'" * @generated */ public interface HyperlinkBehaviourType extends EObject { /** * Returns the value of the '<em><b>Show</b></em>' attribute. * The literals are from the enumeration {@link org.w3.xlink.ShowType2}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Show</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Show</em>' attribute. * @see org.w3.xlink.ShowType2 * @see #isSetShow() * @see #unsetShow() * @see #setShow(ShowType2) * @see org.oasisopen.names.tc.opendocument.xmlns.meta.MetaPackage#getHyperlinkBehaviourType_Show() * @model unsettable="true" required="true" * extendedMetaData="kind='attribute' name='show' namespace='http://www.w3.org/1999/xlink'" * @generated */ ShowType2 getShow(); /** * Sets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.meta.HyperlinkBehaviourType#getShow <em>Show</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Show</em>' attribute. * @see org.w3.xlink.ShowType2 * @see #isSetShow() * @see #unsetShow() * @see #getShow() * @generated */ void setShow(ShowType2 value); /** * Unsets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.meta.HyperlinkBehaviourType#getShow <em>Show</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isSetShow() * @see #getShow() * @see #setShow(ShowType2) * @generated */ void unsetShow(); /** * Returns whether the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.meta.HyperlinkBehaviourType#getShow <em>Show</em>}' attribute is set. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return whether the value of the '<em>Show</em>' attribute is set. * @see #unsetShow() * @see #getShow() * @see #setShow(ShowType2) * @generated */ boolean isSetShow(); /** * Returns the value of the '<em><b>Target Frame Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Target Frame Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Target Frame Name</em>' attribute. * @see #setTargetFrameName(Object) * @see org.oasisopen.names.tc.opendocument.xmlns.meta.MetaPackage#getHyperlinkBehaviourType_TargetFrameName() * @model dataType="org.oasisopen.names.tc.opendocument.xmlns.text.TargetFrameName" * extendedMetaData="kind='attribute' name='target-frame-name' namespace='urn:oasis:names:tc:opendocument:xmlns:office:1.0'" * @generated */ Object getTargetFrameName(); /** * Sets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.meta.HyperlinkBehaviourType#getTargetFrameName <em>Target Frame Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Target Frame Name</em>' attribute. * @see #getTargetFrameName() * @generated */ void setTargetFrameName(Object value); } // HyperlinkBehaviourType