protected String capitalize()

in src/main/java/org/apache/activemq/nms/openwire/tool/commands/CommandCodeGenerator.java [189:194]


    protected String capitalize(String text) {
        if (text == null) {
            return null;
        }
        return text.substring(0, 1).toUpperCase() + text.substring(1);
    }