Examples of IColorProvider


Examples of org.eclipse.jface.viewers.IColorProvider

        }

        public Color getBackground(Object object) {
             // Get the adapter from the factory.
            //
            IColorProvider colorProvider = (IColorProvider)adapterFactory.adapt(object, IColorProvider.class);
            if( colorProvider!=null ){
                return colorProvider.getBackground(object);
            }

            IItemLabelProvider itemLabelProvider = (IItemLabelProvider)adapterFactory.adapt(object, IItemLabelProvider.class);
            if( itemLabelProvider instanceof IColorProvider ){
                colorProvider=(IColorProvider) itemLabelProvider;
                return colorProvider.getBackground(object);
            }
            return null;
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.