Package com.salas.bb.domain

Examples of com.salas.bb.domain.StandardArticle


     *
     * @return <code>TRUE</code> if it matches.
     */
    private static boolean matchArticle(String title, String text, boolean pinned, String pattern, boolean pinnedArticlesOnly)
    {
        StandardArticle article = new StandardArticle(text);
        article.setTitle(title);
        article.setPinned(pinned);

        return SearchEngine.createMatcher(pattern, pinnedArticlesOnly).matches(article);
    }
View Full Code Here

TOP

Related Classes of com.salas.bb.domain.StandardArticle

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.