155156157158159160161
public void setAttribute( final String attribute, final Object value ) throws IOException { checkNotEmpty( "attribute", attribute ); checkCondition( "invalid attribute", PROPERTIES.contains( attribute ) ); throw new NotImplementedException(); }
178179180181182183184
public void setAttribute( final String attribute, final Object value ) throws IOException { checkNotEmpty( "attribute", attribute ); checkCondition( "invalid attribute", attribute.equals( name() ) ); throw new NotImplementedException(); }
275276277278279280281