280281282283284285286287
*/ public final void deleteAttribute( AttributeHierarchy ah ) throws ModelModificationException { if ( ah != null ) { new DeleteAttributesValueJob( ah ).execute(); } }
292293294295296297298299
*/ public final void deleteValue( IValue oldValue ) throws ModelModificationException { if ( oldValue != null ) { new DeleteAttributesValueJob( oldValue ).execute(); } }
306307308309310311312313
318319320321322323324325
746747748749750751752
* @param values * the Values to delete */ protected void deleteAttributesAndValues( IAttribute[] attributes, IValue[] values ) { new DeleteAttributesValueJob( attributes, values ).execute(); }
270271272273274275276277
282283284285286287288289
293294295296297298299300
305306307308309310311312