Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 79c9d0ddf3fde17d7134f53926eb55c2b5450221 (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/*******************************************************************************
 * Copyright (c) 2000, 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 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
 * yyyymmdd bug      Email and other contact information
 * -------- -------- -----------------------------------------------------------
 * 20060612   145433 gilberta@ca.ibm.com - Gilbert Andrews
 *******************************************************************************/

package org.eclipse.jst.ws.internal.consumption.datamodel.beanmodel;

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


/**
* Objects of this class represent a Java bean.
* Nearest moral equivalents: java.lang.Class, java.beans.BeanDescriptor.
*/
public class BeanElement extends TypeElement
{

  // Copyright
  public static final String copyright = "(c) Copyright IBM Corporation 2000, 2002.";
  public static String STATELESS_BEAN = "10101010statelessbean10101010";
  public static String REL_METHODS = "relmethods";
  public static int READONLY = 0;
  public static int WRITEONLY = 1;
  public static int READWRITE = 2;
  private int attrib = 2;
  
  
  /**
  * Constructor 
  * @param projectElement The project this Bean belongs to.
  */
  public BeanElement (String name)
  {
    this(name,new BasicModel("Project"),true);
  }

  /**
  * Constructor 
  * @param parameterElement The parameter this Bean belongs to.
  */
  public BeanElement (String name, Model model,boolean isRoot)
  {
    super(name,model,TypeElement.BEAN);
    if(isRoot) model.setRootElement(this);
    fOwnerType = TypeElement.ROOT;
  }

  /**
  * Constructor for the case when this is not the root object
  * here it represents complex types
  * @param ParameterElement The Parameter that owns this bean type.
  * @param String Name of the bean element.
  */
  public BeanElement ( ParameterElement parameterElement, String name)
  {
    super(name,parameterElement,TypeElement.REL_OWNER,TypeElement.REL_TYPE,TypeElement.BEAN);
    fOwnerType = TypeElement.PARAMETER_OWNER;
  }

  /**
  * Constructor for the case when this is not the root object
  * here it represents complex types
  * @param ParameterElement The Parameter that owns this bean type.
  * @param String Name of the ParameterElement.
  */
  public BeanElement ( AttributeElement attributeElement, String name)
  {
    super(name,attributeElement,TypeElement.REL_OWNER,TypeElement.REL_TYPE,TypeElement.BEAN);
    fOwnerType = TypeElement.ATTRIBUTE_OWNER;
    attribFunction(attributeElement);
  }
 
  private void attribFunction(AttributeElement attributeElement){
	if(attributeElement.getGetterMethod() != null && attributeElement.getSetterMethod() != null) attrib = READWRITE;
	else if(attributeElement.getGetterMethod() == null && attributeElement.getSetterMethod() != null) attrib = WRITEONLY;
	else if(attributeElement.getGetterMethod() != null && attributeElement.getSetterMethod() == null) attrib = READONLY;
  }
  
   /**
  * Constructor for the case when this is not the root object
  * here it represents complex types
  * @param ParameterElement The Parameter that owns this bean type.
  * @param String Name of the ParameterElement.
  */
  public BeanElement ( FieldElement fieldElement, String name)
  {
    super(name,fieldElement,TypeElement.REL_OWNER,TypeElement.REL_TYPE,TypeElement.BEAN);
    fOwnerType = TypeElement.FIELD_OWNER;
  
  }

  /**
  * Returns an enumeration of all Method objects of this Bean.
  * @return Enumeration All Method objects of this Bean.
  */
  public Enumeration getMethods ()
  {
    return getElements(REL_METHODS);
  }

  /**
  * Returns the number of Method objects of this Bean.
  * @return int The number of Method objects of this Bean.
  */
  public int getNumberOfMethodElements ()
  {
    return getNumberOfElements(REL_METHODS);
  }

  public String getTypeName()
  {
    if(isStateLess()) return STATELESS_BEAN + getName();
    return getName();
  }

  public int getAttrib()
  {
    return attrib;
  }
  
  public void setAttrib(int attrib)
  {
    this.attrib = attrib;
  }
  
  public boolean isStateLess()
  {
    Enumeration ea = getElements(TypeElement.REL_ATTRIBUTES);
    Enumeration ef = getElements(TypeElement.REL_FIELDS);
    if(ea.hasMoreElements() || ef.hasMoreElements()) return false;
    else return true;
  }

  
}

Back to the top