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 =
new SgMethod(sgClass, m.getModifiers(), SgClass.BOOLEAN, m.getName());
new SgArgument(sgMethodString, SgClass.create(sgPool, String.class), "region");
}
}
return sgClass;
}