Package net.datacrow.console.components.lists.elements

Examples of net.datacrow.console.components.lists.elements.DcShortObjectListElement


                element = new DcMusicTrackListElement(module);
            else if (moduleType == DcModule._TYPE_PROPERTY_MODULE)
                element = new DcPropertyListElement(module);
            else if (DcModules.get(module).isChildModule() &&
                 module != DcModules.getCurrent().getIndex())
                element = new DcShortObjectListElement(module);
            else
                element = new DcCardObjectListElement(module);      
        } else if (style == _LISTING) {
            if (DcModules.get(module).getType() == DcModule._TYPE_PROPERTY_MODULE)
                element = new DcPropertyListElement(module);
            else if (DcModules.get(module).getType() == DcModule._TYPE_TEMPLATE_MODULE)
              element = new DcTemplateListElement(module);
            else if (module == DcModules._MUSICTRACK)
                element = new DcMusicTrackListElement(module);
            else if (module == DcModules._AUDIOTRACK)
                element = new DcAudioTrackListElement(module);
            else
                element = new DcShortObjectListElement(module);
        }
        return element;
    }
View Full Code Here

TOP

Related Classes of net.datacrow.console.components.lists.elements.DcShortObjectListElement

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.