]> source.dussan.org Git - aspectj.git/blob
04cd29f395ff9fbe9ab35fc634ad03cf2abedefd
[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.eclipse.jdt.internal.compiler.lookup.*;
17
18 public class SimpleSyntheticAccessMethodBinding extends SyntheticAccessMethodBinding {
19         public SimpleSyntheticAccessMethodBinding(MethodBinding method) {
20                 super(method);
21                 this.declaringClass = method.declaringClass;
22 //              this.selector = method.selector;
23 //              this.modifiers = method.modifiers;
24 //              this.parameters = method.parameters;
25 //              this.returnType = method.returnType;
26         }
27 }