Package org.metagrid.gatekeeper.node.property

Examples of org.metagrid.gatekeeper.node.property.StringProperty


                );
            //
            // The Exception message.
            this.init(
                ReadOnlyProperty.wrap(
                    new StringProperty(
                        this,
                        LoggedException.MESSAGE_PROPERTY_URI
                        ){
                        @Override
                        protected String getString()
                            {
                            return LoggedExceptionImpl.this.message();
                            }
                        @Override
                        protected void setString(final String value)
                            {
                            throw new IllegalArgumentException(
                                "Attempt to set a readonly property [" + this + "] to [" + value + "]"
                                );
                            }
                        }
                    )
                );
            //
            // The Exception classname.
            this.init(
                ReadOnlyProperty.wrap(
                    new StringProperty(
                        this,
                        LoggedException.CLASSNAME_PROPERTY_URI
                        ){
                        @Override
                        protected String getString()
View Full Code Here

TOP

Related Classes of org.metagrid.gatekeeper.node.property.StringProperty

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.