Package org.apache.felix.ipojo.extender

Examples of org.apache.felix.ipojo.extender.Status


     *
     * @return the declaration status.
     */
    public Status getStatus() {
        // We return an immutable object, created on the fly.
        return new Status() {
            final boolean m_bound = AbstractDeclaration.this.m_bound;
            final String m_message = AbstractDeclaration.this.m_message;
            final Throwable m_throwable = AbstractDeclaration.this.m_throwable;

            public boolean isBound() {
View Full Code Here

TOP

Related Classes of org.apache.felix.ipojo.extender.Status

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.