Package com.ecyrd.jspwiki.modules

Examples of com.ecyrd.jspwiki.modules.WikiModuleInfo


    {
        TreeSet<WikiModuleInfo> ls = new TreeSet<WikiModuleInfo>();
       
        for( Iterator i = m_pluginClassMap.values().iterator(); i.hasNext(); )
        {
            WikiModuleInfo wmi = (WikiModuleInfo)i.next();
           
            if( !ls.contains(wmi) ) ls.add(wmi);
        }
       
        return ls;
View Full Code Here

TOP

Related Classes of com.ecyrd.jspwiki.modules.WikiModuleInfo

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.