Skip to content
Snippets Groups Projects
Commit 76a052da authored by ribeaudc's avatar ribeaudc
Browse files

add:

- getCurrentMethod() with its corresponding JUnit test.

SVN: 499
parent c20bcca8
No related branches found
No related tags found
No related merge requests found
......@@ -17,10 +17,12 @@
package ch.systemsx.cisd.common.utilities;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;
import ch.systemsx.cisd.common.annotation.Mandatory;
import ch.systemsx.cisd.common.exceptions.CheckedExceptionTunnel;
/**
* Operations on classes using reflection.
......@@ -61,4 +63,35 @@ public final class ClassUtils
return list;
}
/**
* Returns the currently called <code>Method</code>.
* <p>
* Returns <code>null</code> if none could be found.
* </p>
*/
// TODO 2007.06.14 Christian Ribeaud: 'method.getName()' is not specific enough. You have to used kind of
// or part of 'Method.toGenericString()'.
public final static Method getCurrentMethod()
{
StackTraceElement[] elements = new Throwable().getStackTrace();
// Index 0 is *this* method
StackTraceElement element = elements[1];
String methodName = element.getMethodName();
try
{
Method[] methods = Class.forName(element.getClassName()).getMethods();
for (Method method : methods)
{
if (method.getName().equals(methodName))
{
return method;
}
}
// SecurityException, ClassNotFoundException
} catch (Exception ex)
{
throw CheckedExceptionTunnel.wrapIfNecessary(ex);
}
return null;
}
}
/*
* Copyright 2007 ETH Zuerich, CISD
*
* Licensed 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 ch.systemsx.cisd.common.utilities;
import static org.testng.AssertJUnit.*;
import org.testng.annotations.Test;
/**
* Test cases for the {@link ClassUtils} class.
*
* @author Christian Ribeaud
*/
public class ClassUtilsTest
{
/**
* Test method for {@link ch.systemsx.cisd.common.utilities.ClassUtils#getCurrentMethod()}.
*/
@Test
public final void testGetCurrentMethod()
{
assertEquals("testGetCurrentMethod", ClassUtils.getCurrentMethod().getName());
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment