/******************************************************************************* * Copyright (c) 2009 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: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.jst.javaee.core; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Respect Binding Type</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * * * Corresponds to the javax.xml.ws.RespectBinding annotation * or its corresponding javax.xml.ws.RespectBindingFeature web * service feature. This is used to control whether a JAX-WS * implementation must respect/honor the contents of the * wsdl:binding in the WSDL that is associated with the service. * * If the "enabled" element is "true", wsdl:binding in the * associated WSDL, if any, must be respected/honored. * * @since Java EE 6, Web Services Client 1.3 * * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.jst.javaee.core.RespectBindingType#isEnabled <em>Enabled</em>}</li> * </ul> * </p> * * @see org.eclipse.jst.javaee.core.internal.metadata.JavaeePackage#getRespectBindingType() * @extends JavaEEObject * @generated */ public interface RespectBindingType extends JavaEEObject { /** * Returns the value of the '<em><b>Enabled</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Enabled</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Enabled</em>' attribute. * @see #isSetEnabled() * @see #unsetEnabled() * @see #setEnabled(boolean) * @see org.eclipse.jst.javaee.core.internal.metadata.JavaeePackage#getRespectBindingType_Enabled() * @generated */ boolean isEnabled(); /** * Sets the value of the '{@link org.eclipse.jst.javaee.core.RespectBindingType#isEnabled <em>Enabled</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Enabled</em>' attribute. * @see #isSetEnabled() * @see #unsetEnabled() * @see #isEnabled() * @generated */ void setEnabled(boolean value); /** * Unsets the value of the '{@link org.eclipse.jst.javaee.core.RespectBindingType#isEnabled <em>Enabled</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isSetEnabled() * @see #isEnabled() * @see #setEnabled(boolean) * @generated */ void unsetEnabled(); /** * Returns whether the value of the '{@link org.eclipse.jst.javaee.core.RespectBindingType#isEnabled <em>Enabled</em>}' attribute is set. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return whether the value of the '<em>Enabled</em>' attribute is set. * @see #unsetEnabled() * @see #isEnabled() * @see #setEnabled(boolean) * @generated */ boolean isSetEnabled(); } // RespectBindingType