]> source.dussan.org Git - aspectj.git/blob
18b6463ceaf7e5c724794fe082b35c71e542cf85
[aspectj.git] /
1 /* *******************************************************************
2  * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
3  * All rights reserved. 
4  * This program and the accompanying materials are made available 
5  * under the terms of the Common Public License v1.0 
6  * which accompanies this distribution and is available at 
7  * http://www.eclipse.org/legal/cpl-v10.html 
8  *  
9  * Contributors: 
10  *     PARC     initial implementation 
11  * ******************************************************************/
12
13
14 package org.aspectj.ajdt.internal.compiler.lookup;
15
16 import org.aspectj.org.eclipse.jdt.internal.compiler.lookup.MethodBinding;
17 import org.aspectj.org.eclipse.jdt.internal.compiler.lookup.SyntheticMethodBinding;
18
19 public class SimpleSyntheticAccessMethodBinding extends SyntheticMethodBinding {
20 //      public SimpleSyntheticAccessMethodBinding(MethodBinding method) {
21 //              super(method);
22 //              this.declaringClass = method.declaringClass;
23 //              this.selector = method.selector;
24 //              this.modifiers = method.modifiers;
25 //              this.parameters = method.parameters;
26 //              this.returnType = method.returnType;
27 //      }
28         
29         public SimpleSyntheticAccessMethodBinding(MethodBinding binding) {
30                 super(binding);
31         }
32 }