Package org.eclipse.sapphire.samples.gallery

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


        final Element element = getModelElement();
        final String entityName = ( (Value<?>) property() ).text();
       
        if( entityName != null && ! isEntityDefined( entityName ) )
        {
            final IValuePropertyActionsGalleryEntity entity = element.nearest( IValuePropertyActionsGallery.class ).getEntities().insert();
            entity.setName( entityName );
        }
       
        return null;
    }
View Full Code Here


        if( dialog.open() != Window.CANCEL )
        {
            final String entityName = dialog.getValue();
            final Element element = getModelElement();
           
            final IValuePropertyActionsGalleryEntity entity = element.nearest( IValuePropertyActionsGallery.class ).getEntities().insert();
            entity.setName( entityName );
           
            ( (Value<?>) property() ).write( entityName );
        }
       
        return null;
View Full Code Here

TOP

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

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.