protected void processClass()

in src/main/java/org/apache/activemq/nms/openwire/tool/commands/CommandGenerator.java [47:64]


    protected void processClass(JClass jclass) {

        // Prepare the State variables for the current class
        simpleName = jclass.getSimpleName();
        superclass = jclass.getSuperclass();
        className = getClassName(jclass);
        baseClass = getBaseClassName(jclass);

        System.out.println(getClass().getName() + " processing class: " + simpleName);

        try {
            // Using the current JClass state in the MultiSourceGenerator we can
            // now generate the Source for the CSharp commands.
            generateClassFile();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }