Package apigen.adt.api.types

Examples of apigen.adt.api.types.Module


 
  public Set<String> getModuleNameSet() {
    Set<String> modulenames = new HashSet<String>();
    Iterator<Module> it = moduleIterator();
    while (it.hasNext()) {
      Module mod = it.next();
      String modname = mod.getModulename().getName();
      modulenames.add(modname);
    }
    return modulenames;
  }
View Full Code Here

TOP

Related Classes of apigen.adt.api.types.Module

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.