}
private static SgClass generateClass()
{
SgClassPool sgPool = new SgClassPool();
SgClass sgClass =
new SgClass("public",
GenerateSupported.class.getPackage().getName(),
"IsSupported",
true,
null);
SgClass sgPlugin = SgClass.create(sgPool, Plugin.class);
for (SgClass i : sgPlugin.getInterfaces())
{
for (SgMethod m : i.getMethods())
{
new SgMethod(sgClass, m.getModifiers(), SgClass.BOOLEAN, m.getName());
SgMethod sgMethodString =