Skip to main content
summaryrefslogtreecommitdiffstats
blob: 0b0b6fc8811312e8b3892f5a95b5398d7e099e4d (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
/*******************************************************************************
 * 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;


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

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

   
  public void setSetterMethod(String setterMethod);
  public String getSetterMethod();
  public String getGetterMethod();
  public void setGetterMethod(String getterMethod);
  public BeanElement getOwningBeanElement ();
  public TypeElement getTypeElement ();
  /**
  * Return the signature with this value as the parmeter
  *
  */
  public String getSetterSignature(String attribute);
  
}

Back to the top