|
What this is
Other links
The source code
package com.ice.util;
public class
ClassUtilities
{
public static boolean
implementsInterface( Class aClass, String interfaceName )
{
int ii;
Class[] interfaces = aClass.getInterfaces();
for ( ii = 0 ; ii < interfaces.length ; ++ii )
{
if ( interfaceName.equals( interfaces[ ii ].getName() ) )
break;
}
return ( ii < interfaces.length );
}
}
|
Copyright 1998-2008 Alvin Alexander
All Rights Reserved.
devdaily.com is based in louisville, kentucky, and this web site is hosted by godaddy.com