Package org.eclipse.sapphire.samples.gallery

Examples of org.eclipse.sapphire.samples.gallery.ElementPropertyCustomGallery


                {
                    refresh();
                }
            };
           
            final ElementPropertyCustomGallery gallery = context( ElementPropertyCustomGallery.class );
            gallery.property( ElementPropertyCustomGallery.PROP_ALLOW_CHILD_ELEMENT_WITH_INTEGER ).attach( listener );
            gallery.property( ElementPropertyCustomGallery.PROP_ALLOW_CHILD_ELEMENT_WITH_ENUM ).attach( listener );
        }
View Full Code Here


        }
       
        @Override
        protected PossibleTypesServiceData compute()
        {
            final ElementPropertyCustomGallery gallery = context( ElementPropertyCustomGallery.class );
            final List<ElementType> types = new ArrayList<ElementType>();
           
            types.add( IChildElement.TYPE );
           
            if( gallery.getAllowChildElementWithInteger().content() )
            {
                types.add( IChildElementWithInteger.TYPE );
            }
           
            if( gallery.getAllowChildElementWithEnum().content() )
            {
                types.add( IChildElementWithEnum.TYPE );
            }
           
            return new PossibleTypesServiceData( types );
View Full Code Here

TOP

Related Classes of org.eclipse.sapphire.samples.gallery.ElementPropertyCustomGallery

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.