All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.wst.wsdl.BindingInput Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2001, 2005 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.wst.wsdl;


/**
 * 
 * A representation of the model object 'Binding Input'.
 * @since 1.0
 * 
 *
 * 
 * This class represents a WSDL input element within a operation within a binding. An input element within an operation within a binding specifies binding information for the input of the operation. 
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.eclipse.wsdl.BindingInput#getName Name}
  • *
  • {@link org.eclipse.wsdl.BindingInput#getEInput EInput}
  • *
*

* * @see org.eclipse.wsdl.WSDLPackage#getBindingInput() * @model * @generated */ public interface BindingInput extends ExtensibleElement, javax.wsdl.BindingInput{ /** * Returns the value of the 'Name' attribute. * *

* If the meaning of the 'Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.eclipse.wsdl.WSDLPackage#getBindingInput_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.wsdl.BindingInput#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'EInput' reference. * *

* If the meaning of the 'EInput' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'EInput' reference. * @see #setEInput(Input) * @see org.eclipse.wsdl.WSDLPackage#getBindingInput_EInput() * @model required="true" * @generated */ Input getEInput(); /** * Sets the value of the '{@link org.eclipse.wsdl.BindingInput#getEInput EInput}' reference. * * * @param value the new value of the 'EInput' reference. * @see #getEInput() * @generated */ void setEInput(Input value); /** * * This method is same as getEInput() and compatible with the JWSDL API. * @see #getEInput() * @return the value of the 'EInput' reference. * @ignore * * @model parameters="" * @generated */ javax.wsdl.Input getInput(); /** * * This method is same as setEInput(Input) and compatible with the JWSDL API. * @see #setEInput(Input) * @param input the new value of the 'EInput' reference. * @ignore * * @model * @generated */ void setInput(javax.wsdl.Input input); } // BindingInput




© 2015 - 2024 Weber Informatics LLC | Privacy Policy