Skip to main content
summaryrefslogtreecommitdiffstats
blob: 36f08a8b81e5479d693222ab794b1b6626057304 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*******************************************************************************
 * Copyright (c) 2000, 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.jst.ws.internal.consumption.datamodel.beanmodel;

import java.util.Enumeration;
import org.eclipse.wst.ws.internal.datamodel.BasicElement;


/**
* Objects of this class represent a Java bean method parameter.
* Nearest moral equivalents: java.beans.ParameterDescriptor.
*/
public class ParameterElement extends BasicElement
{

  // Copyright
  public static final String copyright = "(c) Copyright IBM Corporation 2000, 2002.";

 
  public static final String REL_METHOD = "method";
  public static final String REL_TYPE = "type";

  public boolean fReturnParameter=false;
  
  /**
  * Constructor.
  * @param method The Method that owns this parameter.
  * @param name The name of the parameter.
  * @param type The type of the parameter.
  */
  public ParameterElement ( MethodElement methodElement, String name, String relType,boolean returnParameter )
  {
    this(name,methodElement,REL_METHOD,relType);
    fReturnParameter = returnParameter;
  }
  
  /**
  * Constructor.
  * @param method The Method that owns this parameter.
  * @param name The name of the parameter.
  * @param type The type of the parameter.
  */
  public ParameterElement (String name, MethodElement methodElement, String outRel,String inRel)
  {
    super(name,methodElement,outRel,inRel);
  }
   
  /**
  * Returns the Method that owns this parameter.
  * @return Method The Method that owns this parameter.
  */
  public MethodElement getMethodElement ()
  {
    Enumeration e = getElements(REL_METHOD);
    return e.hasMoreElements() ? (MethodElement)e.nextElement() : null;
  }

  /**
  * Returns the Method that owns this parameter.
  * @return Method The Method that owns this parameter.
  */
  public TypeElement getTypeElement ()
  {
    Enumeration e = getElements(REL_TYPE);
    return e.hasMoreElements() ? (TypeElement)e.nextElement() : null;
  }

  public boolean isReturn()
  {
    return fReturnParameter;
  }

}

Back to the top