blob: 108142d3bc7446918991adac66cd44436373c599 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 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.ws.internal.explorer.platform.uddi.datamodel;
import org.eclipse.wst.ws.internal.datamodel.Model;
import org.uddi4j.datatype.tmodel.TModel;
public class ServiceInterfaceElement extends AbstractUDDIElement
{
private TModel tModel_;
public ServiceInterfaceElement(TModel tModel,Model model)
{
super(tModel.getNameString(),model);
tModel_ = tModel;
setKey(tModel.getTModelKey());
}
public final TModel getTModel()
{
return tModel_;
}
}