01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.object.bytecode.aspectwerkz;
05:
06: import com.tc.aspectwerkz.reflect.ConstructorInfo;
07:
08: /**
09: * Implementation of ConstructorInfo
10: */
11: public class AsmConstructorInfo extends AsmMethodInfo implements
12: ConstructorInfo {
13:
14: public AsmConstructorInfo(ClassInfoFactory classInfoFactory,
15: int modifiers, String className, String methodName,
16: String desc, String[] exceptions) {
17: super (classInfoFactory, modifiers, className, methodName, desc,
18: exceptions);
19: }
20:
21: //public String getName() { return "new"; }
22:
23: public String[] getParameterNames() {
24: return new String[0]; //To change body of implemented methods use File | Settings | File Templates.
25: }
26:
27: public String getSignature() {
28: return null; //To change body of implemented methods use File | Settings | File Templates.
29: }
30: }
|