KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > object > bytecode > aspectwerkz > AsmConstructorInfo


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.object.bytecode.aspectwerkz;
5
6 import com.tc.aspectwerkz.reflect.ConstructorInfo;
7
8 /**
9  * Implementation of ConstructorInfo
10  */

11 public class AsmConstructorInfo extends AsmMethodInfo implements ConstructorInfo {
12
13   public AsmConstructorInfo(ClassInfoFactory classInfoFactory, int modifiers, String JavaDoc className, String JavaDoc methodName, String JavaDoc desc, String JavaDoc[] exceptions) {
14     super(classInfoFactory, modifiers, className, methodName, desc, exceptions);
15   }
16
17   //public String getName() { return "new"; }
18

19   public String JavaDoc[] getParameterNames() {
20     return new String JavaDoc[0]; //To change body of implemented methods use File | Settings | File Templates.
21
}
22
23   public String JavaDoc getSignature() {
24     return null; //To change body of implemented methods use File | Settings | File Templates.
25
}
26 }
27
Popular Tags