Package com.salas.bb.utils

Examples of com.salas.bb.utils.IdNameHolder


         *
         * @return blog or <code>NULL</code>.
         */
        public static Blog restore(Preferences prefs, String prop)
        {
            IdNameHolder hld = restore0(prefs, prop);
            return hld == null ? null : new Blog(hld.id, hld.name);
        }
View Full Code Here


         *
         * @return category or <code>NULL</code>.
         */
        public static Category restore(Preferences prefs, String prop)
        {
            IdNameHolder hld = restore0(prefs, prop);
            return hld == null ? null : new Category(hld.id, hld.name);
        }
View Full Code Here

TOP

Related Classes of com.salas.bb.utils.IdNameHolder

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.