blob: 3190db35389e9270df02f2b7145d67c7066b828f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
* yyyymmdd bug Email and other contact information
* -------- -------- -----------------------------------------------------------
* 20060620 147864 cbrealey@ca.ibm.com - Chris Brealey
*******************************************************************************/
package org.eclipse.jst.ws.internal.wsrt;
import org.eclipse.jdt.core.IType;
import org.eclipse.wst.ws.internal.wsrt.WebServiceClientInfo;
/**
* This subclass of WebServiceClientInfo adds properties
* relevant to descriptors of Java Web service clients.
*/
public class WebServiceJavaClientInfo extends WebServiceClientInfo
{
private IType jdtType_;
/**
* Returns the JDT IType of the primary Java proxy class
* of a Web service client, or null if no such class has
* been located.
* @return The JDT IType of the Java client proxy class.
*/
public IType getType ()
{
return jdtType_;
}
/**
* Sets the JDT IType of the primary Java proxy class
* of a Web service client.
* @param jdtType The JDT IType of the Java client proxy class.
*/
public void setType ( IType jdtType )
{
jdtType_ = jdtType;
}
}