Skip to main content
summaryrefslogblamecommitdiffstats
blob: 7eb9acfdef91e4a5e7e806e0c0244fab633f6627 (plain) (tree)































                                                                                 
/*******************************************************************************
 * 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.*;

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_;
  }
}

Back to the top