Package com.salas.bb.domain

Examples of com.salas.bb.domain.FeedType


     */
    public void commitChanges()
    {
        if (feed == null) return;

        FeedType feedType = getFeedType();
        if (getInitialFeedType() != feedType) feed.setType(feedType);

        // Custom view mode
        int mode = getViewMode();
        feed.setCustomViewModeEnabled(isCustomViewModeEnabled());
View Full Code Here


        if (idI < QueryType.RESERVED_IDS) throw new LoaderException("ID must be larger than " +
            QueryType.RESERVED_IDS + " (the last reserved)");

        // Type check
        if (StringUtils.isEmpty(type)) type = "text";
        FeedType typeI = TYPES.get(type.trim().toLowerCase());
        if (typeI == null) throw new LoaderException("Type can be: text, link, image");

        // Mode check
        if (StringUtils.isEmpty(mode)) mode = "full";
        Integer modeI = MODES.get(mode.trim().toLowerCase());
View Full Code Here

TOP

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

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.