final String cmd = getCmdNameAsInvoked();
String attributes = null;
String [] targets = null;
if ( cmd.equalsIgnoreCase( GET ) || cmd.equalsIgnoreCase( GET_ABBREV ) )
{
attributes = getAttributes();
targets = getTargets();
}
println( "Getting attributes: " + attributes );
println( "Against targets: " + ArrayStringifier.stringify( targets, "\n" ) );
establishProxy();
final ResultsForGetSet [] results = getProxy().mbeanGet( attributes, targets );
println( ArrayStringifier.stringify( results, "\n\n" ) );