Package org.apache.wiki

Examples of org.apache.wiki.PageTimeComparator


            List<WikiPage> changed = plugin.findBlogEntries(m_context.getEngine().getPageManager(),
                                                            blogid,
                                                            new Date(0L),
                                                            new Date());

            Collections.sort( changed, new PageTimeComparator() );

            int items = 0;
            for( Iterator i = changed.iterator(); i.hasNext() && items < numberOfPosts; items++ )
            {
                WikiPage p = (WikiPage) i.next();
View Full Code Here

TOP

Related Classes of org.apache.wiki.PageTimeComparator

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.