diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2010-11-20 08:29:00 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2010-11-20 08:29:00 +0000 |
commit | 98dceb1593305a85de799c6e3bb15edb4bd399b0 (patch) | |
tree | 8f13c50730f961681cbda9a33005d7d88d2df6d9 /sca-java-2.x/trunk/modules/shell/src/main/java/org/apache | |
parent | a3a1ba34bf830b25e1bd84206c00ff536d4a4a83 (diff) |
Filter out some more cglib operations
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1037134 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/modules/shell/src/main/java/org/apache')
-rw-r--r-- | sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/jline/ServiceOperationCompletor.java | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/jline/ServiceOperationCompletor.java b/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/jline/ServiceOperationCompletor.java index 8b74a4f7d6..d4e1fc55e4 100644 --- a/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/jline/ServiceOperationCompletor.java +++ b/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/jline/ServiceOperationCompletor.java @@ -39,12 +39,17 @@ public class ServiceOperationCompletor extends SimpleCompletor { private Shell shell; private static final List<String> EXCLUDED_OPS = Arrays.asList(new String[] {"equals", "getClass", - "getInvocationHandler", - "getProxyClass", "hashCode", - "isProxyClass", "newProxyInstance", - "notify", "notifyAll", "toString", - "wait"}); - + "getInvocationHandler", + "getProxyClass", "hashCode", + "isProxyClass", "newProxyInstance", + "notify", "notifyAll", "toString", + "wait", "CGLIB$SET_STATIC_CALLBACKS", + "CGLIB$SET_THREAD_CALLBACKS", + "CGLIB$findMethodProxy", + "getCallback", "getCallbacks", + "newInstance", "setCallback", + "setCallbacks"}); + public ServiceOperationCompletor(Shell shell) { super(""); this.shell = shell; |