MetaAttribute attribute = new MetaAttribute( "extends" );
attribute.addValue( "x" );
attribute.addValue( "y" );
m.put( attribute.getName(), attribute );
attribute = new MetaAttribute( "interface" );
attribute.addValue( "true" );
m.put( attribute.getName(), attribute );
sub.setMetaAttributes( m );
assertEquals( "Base,x,y", c2j.getPOJOClass(sub).getExtends() );