Package br.com.ingenieux.launchify.core.spi

Examples of br.com.ingenieux.launchify.core.spi.LaunchifyVisitor


          continue;

        ClassReader classReader = new ClassReader(obj.getContent()
            .getInputStream());

        LaunchifyVisitor visitor = new LaunchifyVisitor();
        classReader.accept(visitor, ClassReader.SKIP_CODE
            | ClassReader.SKIP_DEBUG | ClassReader.SKIP_FRAMES);

        if (visitor.isValid()) {
          ApplicationEntry entry = new ApplicationEntry();

          entry.setName(visitor.getAppName());
          entry.setClassName(visitor.getClassName());

          results.add(entry);
        }
      }
    }
View Full Code Here

TOP

Related Classes of br.com.ingenieux.launchify.core.spi.LaunchifyVisitor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.