~ubuntu-branches/ubuntu/natty/aspectj/natty

« back to all changes in this revision

Viewing changes to org.aspectj/modules/org.aspectj.matcher/src/org/aspectj/weaver/TemporaryTypeMunger.java

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan
  • Date: 2009-10-04 16:37:23 UTC
  • mfrom: (1.1.3 upstream) (3.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20091004163723-ck4y7j7fhjxskkie
Tags: 1.6.6+dfsg-1
* New upstream release.
  - Update 02_use_gjdoc.diff patch
* Update my email address

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* *******************************************************************
 
2
 * Copyright (c) 2008 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://www.eclipse.org/legal/epl-v10.html 
 
8
 *  
 
9
 * ******************************************************************/
 
10
package org.aspectj.weaver;
 
11
 
 
12
import java.util.Map;
 
13
 
 
14
/**
 
15
 * Some methods need a temporary type munger (because ConcreteTypeMunger is abstract - dont ask...).
 
16
 * 
 
17
 * TODO ought to remove the need for this or at least sort out the two methods that are in it, they look wierd...
 
18
 * 
 
19
 * @author AndyClement
 
20
 */
 
21
public class TemporaryTypeMunger extends ConcreteTypeMunger {
 
22
 
 
23
        public TemporaryTypeMunger(ResolvedTypeMunger munger, ResolvedType aspectType) {
 
24
                super(munger, aspectType);
 
25
        }
 
26
 
 
27
        public ConcreteTypeMunger parameterizeWith(Map parameterizationMap, World world) {
 
28
                throw new UnsupportedOperationException("Cannot be called on a TemporaryTypeMunger");
 
29
        }
 
30
 
 
31
        public ConcreteTypeMunger parameterizedFor(ResolvedType targetType) {
 
32
                throw new UnsupportedOperationException("Cannot be called on a TemporaryTypeMunger");
 
33
        }
 
34
 
 
35
}
 
 
b'\\ No newline at end of file'