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

com.ibm.wsdl.TypesImpl Maven / Gradle / Ivy

The newest version!
/*
 * (c) Copyright IBM Corp 2001, 2006 
 */

package com.ibm.wsdl;

import java.util.*;

import javax.wsdl.*;

/**
 * This class represents the <types> section of a WSDL document.
 *
 * @author Matthew J. Duftler ([email protected])
 */
public class TypesImpl extends AbstractWSDLElement implements Types
{
  protected List nativeAttributeNames =
    Arrays.asList(Constants.TYPES_ATTR_NAMES);

  public static final long serialVersionUID = 1;

  public String toString()
  {
    StringBuffer strBuf = new StringBuffer();

    strBuf.append("Types:");

    String superString = super.toString();
    if(!superString.equals(""))
    {
      strBuf.append("\n");
      strBuf.append(superString);
    }

    return strBuf.toString();
  }
  
  /**
   * Get the list of local attribute names defined for this element in
   * the WSDL specification.
   *
   * @return a List of Strings, one for each local attribute name
   */
  public List getNativeAttributeNames()
  {
    return nativeAttributeNames;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy