You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by GitBox <gi...@apache.org> on 2019/01/21 04:56:37 UTC

[GitHub] arusinha commented on a change in pull request #1059: [NETBEANS-1673]:Added support for auto-complete of enum case values i…

arusinha commented on a change in pull request #1059: [NETBEANS-1673]:Added support for auto-complete of enum case values i…
URL: https://github.com/apache/incubator-netbeans/pull/1059#discussion_r249325206
 
 

 ##########
 File path: java/java.source.base/src/org/netbeans/api/java/source/ReflectionHelper.java
 ##########
 @@ -0,0 +1,61 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.netbeans.api.java.source;
+
+import java.lang.reflect.InvocationTargetException;
+import java.lang.reflect.Method;
+import java.util.List;
+import org.openide.util.Exceptions;
+
+/**
+ * The class can we used to call methods of a class using Reflection.
+ *
+ *
+ * @author arusinha
+ */
+public final class ReflectionHelper {
+
+    /**
+     *
+     * @param className the fully qualified name of the desired class.
+     * @param methodName the name of the method
+     * @param parameterTypes the method parameter types list
+     * @param obj the object the underlying method is invoked from
+     * @param paramArgs the arguments used for the method call
+     * @return the result of the invoked method.
+     * @since 2.41
+     */
+    public static Object invokeMethod(String className, String methodName, List<Class> parameterTypes, Object obj, Object... paramArgs) {
 
 Review comment:
   Had removed ReflectionHelper in recent commit instead used TreeShims class

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists