Package bm.ui

Examples of bm.ui.DataList


                final DataListView dlv = new DataListView(
                        getController( viewDef.getController() ),
                        ResourceManager.getResource( viewDef.getTitle() ),
                        viewDef.getId()
                );
                final DataList dataList = dlv.getDataList();
                if( viewDef.getColor() != null )
                {
                    dataList.setColor( viewDef.getColor().intValue() );
                }
                if( viewDef.getSelectedColor() != null )
                {
                    dataList.setSelectedColor(
                            viewDef.getSelectedColor().intValue()
                    );
                }
                if( viewDef.getBackground() != null )
                {
                    dataList.setBackground( viewDef.getBackground().intValue() );
                }
                if( viewDef.getSelectedBackground() != null )
                {
                    dataList.setSelectedBackground(
                            viewDef.getSelectedBackground().intValue()
                    );
                }
                if( viewDef.getMaxLines() != null )
                {
                    dataList.setMaxLines( viewDef.getMaxLines().intValue() );
                }
                browser = dlv;
            }

            final Vector fields = viewDef.getFields();
View Full Code Here


    public DataListView( final Controller controller, final int id )
    {
        super( controller );
        this.id = id;
        final DataList list = new DataList( this, controller );
        list.setCommandListener( this );
        displayable = list;
        this.controller = controller;
    }
View Full Code Here

TOP

Related Classes of bm.ui.DataList

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.