]> source.dussan.org Git - aspectj.git/blob
0b2b9b5fc1d9e72a87022f28f5244171024a28d2
[aspectj.git] /
1 /* *******************************************************************
2  * Copyright (c) 2005 Contributors.
3  * All rights reserved. 
4  * This program and the accompanying materials are made available 
5  * under the terms of the Eclipse Public License v1.0 
6  * which accompanies this distribution and is available at 
7  * http://eclipse.org/legal/epl-v10.html 
8  *  
9  * Contributors: 
10  *   Adrian Colyer                      Initial implementation
11  * ******************************************************************/
12 package org.aspectj.weaver.patterns;
13
14 import org.aspectj.weaver.UnresolvedType;
15
16 /**
17  * @author colyer
18  *
19  */
20 public class HasThisTypePatternTriedToSneakInSomeGenericOrParameterizedTypePatternMatchingStuffAnywhereVisitor
21                 extends AbstractPatternNodeVisitor {
22
23         boolean ohYesItHas = false;
24         
25         /**
26          * Is the Exact type parameterized?
27          * Generic is ok as that just means we resolved a simple type pattern to a generic type
28          */
29         public Object visit(ExactTypePattern node, Object data) {
30                 UnresolvedType theExactType = node.getExactType();
31                 if (theExactType.isParameterizedType()) ohYesItHas = true;
32                 //if (theExactType.isGenericType()) ohYesItHas = true;
33                 return data;
34         }
35
36         /**
37          * Any type bounds are bad.
38          * Type parameters are right out.
39          */
40         public Object visit(WildTypePattern node, Object data) {
41                 if (node.getUpperBound() != null) ohYesItHas = true;
42                 if (node.getLowerBound() != null) ohYesItHas = true;
43                 if (node.getTypeParameters().size() != 0) ohYesItHas = true;
44                 return data;
45         }
46         
47         public boolean wellHasItThen/*?*/() {
48                 return ohYesItHas;
49         }
50 }