Package org.fusesource.ide.commons.camel.tools

Examples of org.fusesource.ide.commons.camel.tools.Archetypes


          object = unmarshaller.unmarshal(new StringReader(catalog));
        } catch (Exception e) {
          Activator.getLogger().warning(e);
        }
        if (object instanceof Archetypes) {
          Archetypes archetypesDTO = (Archetypes) object;
          List<Archetype> list = archetypesDTO.getArchetypes();
          for (Archetype archetype : list) {
            ArchetypeDetails details = new ArchetypeDetails(archetype);
            URL resource = bundle.getResource("/archetypes/" + details.getFullName());
            details.setResource(resource);
            answer.add(details);
View Full Code Here

TOP

Related Classes of org.fusesource.ide.commons.camel.tools.Archetypes

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.