Package org.eclipse.sapphire.modeling.el

Examples of org.eclipse.sapphire.modeling.el.FunctionException


                    };
                }
            }
        }
       
        throw new FunctionException( "CatalogItemImage() function cannot be used in this context.");
    }
View Full Code Here


                    }
                };
            }
        }
       
        throw new FunctionException( contextPropertyEditorNotFound.text() );
    }
View Full Code Here

                    page = ( (PartFunctionContext) context ).part().nearest( SapphireEditorPagePart.class );
                }
               
                if( page == null )
                {
                    throw new FunctionException( editorPageNotFound.text() );
                }
               
                return page.state();
            }
        };
View Full Code Here

        {
            return parser.Start();
        }
        catch( TokenMgrError e )
        {
            throw new FunctionException( Status.createErrorStatus( parseFailedMessage.format( expression ), e ) );
        }
        catch( Exception e )
        {
            throw new FunctionException( Status.createErrorStatus( parseFailedMessage.format( expression ), e ) );
        }
    }
View Full Code Here

                {
                    return ( (String) this.operand ).length();
                }

                final String msg = unsupportedTypeMessage.format( this.operand.getClass().getName() );
                throw new FunctionException( msg );
            }
           
            @Override
            public void dispose()
            {
View Full Code Here

        {
            return ( (Transient<?>) property ).content();
        }
       
        final String msg = unsupportedTypeMessage.format( property.getClass().getName() );
        throw new FunctionException( msg );
    }
View Full Code Here

                    {
                        this.list.detach( this.listener );
                        this.list = null;
                    }
                   
                    throw new FunctionException( parentNotListMessage.text() );
                }
            }

            @Override
            public void dispose()
View Full Code Here

TOP

Related Classes of org.eclipse.sapphire.modeling.el.FunctionException

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.