{
if ( javaMethod.getAnnotations() != null )
{
for ( int i = 0; i < javaMethod.getAnnotations().length; i++ )
{
Annotation annotation = javaMethod.getAnnotations()[i];
if ( annotation.toString().equals( "@java.lang.Override()" ) )
{
return true;
}
}
}