// output predefined about properties
ExtendedProperties props =
ExtendedPropertiesUtils.loadFromOverlappingResources( "META-INF/cyclopsgroup/jmxterm.properties",
getClass().getClassLoader() );
ValueOutputFormat format = new ValueOutputFormat( 2, showDescription, true );
for ( Object entryObject : props.subset( "jmxterm.about" ).entrySet() )
{
Map.Entry<String, Object> entry = (Map.Entry<String, Object>) entryObject;
format.printExpression( session.output, entry.getKey(), entry.getValue(), null );
}