Package org.apache.hivemind.util

Examples of org.apache.hivemind.util.ToStringBuilder


    /**
     * @since 3.0
     */
    public String toString()
    {
        ToStringBuilder b = new ToStringBuilder(this);

        b.append("rewinding", _rewinding);

        if (_service != null)
            b.append("service", _service);

        b.append("serviceParameters", _listenerParameters);

        if (_loadedPages != null)
            b.append("loadedPages", _loadedPages.keySet());

        b.append("attributes", _attributes);
        b.append("targetActionId", _targetActionId);
        b.append("targetComponent", _targetComponent);

        return b.toString();
    }
View Full Code Here


            writer.end();
    }

    public String toString()
    {
        ToStringBuilder builder = new ToStringBuilder(this);

        builder.append("component", _component);
        builder.append("key", _key);
        builder.append("raw", _raw);
        builder.append("attributes", _attributes);

        return builder.toString();
    }
View Full Code Here

        _classFab = classFactory.newClass(name, _baseClass);
    }

    public String toString()
    {
        ToStringBuilder builder = new ToStringBuilder(this);

        builder.append("baseClass", _baseClass.getName());
        builder.append("claimedProperties", _claimedProperties);
        builder.append("classFab", _classFab);

        return builder.toString();
    }
View Full Code Here

        return point.getElements();
    }

    public String toString()
    {
        ToStringBuilder builder = new ToStringBuilder(this);

        builder.append("locale", _locale);

        return builder.toString();
    }
View Full Code Here

        _classFab = classFactory.newClass(name, _baseClass);
    }

    public String toString()
    {
        ToStringBuilder builder = new ToStringBuilder(this);

        builder.append("baseClass", _baseClass.getName());
        builder.append("claimedProperties", _claimedProperties);
        builder.append("classFab", _classFab);

        return builder.toString();
    }
View Full Code Here

        return point.getElements();
    }

    public String toString()
    {
        ToStringBuilder builder = new ToStringBuilder(this);

        builder.append("locale", _locale);

        return builder.toString();
    }
View Full Code Here

        _classFab = classFactory.newClass(name, _baseClass);
    }

    public String toString()
    {
        ToStringBuilder builder = new ToStringBuilder(this);

        builder.append("baseClass", _baseClass.getName());
        builder.append("claimedProperties", _claimedProperties);
        builder.append("classFab", _classFab);

        return builder.toString();
    }
View Full Code Here

     * @see #extendDescription(ToStringBuilder)
     */

    public String toString()
    {
        ToStringBuilder builder = new ToStringBuilder(this);

        builder.append("locale", _locale);

        return builder.toString();
    }
View Full Code Here

    private String _followingInterceptorIds;

    public String toString()
    {
        ToStringBuilder builder = new ToStringBuilder(this);
        builder.append("factoryServiceId", _factoryServiceId);
        builder.append("parameters", _parameters);
        builder.append("precedingInterceptorIds", _precedingInterceptorIds);
        builder.append("followingInterceptorIds", _followingInterceptorIds);

        return builder.toString();
    }
View Full Code Here

    /** @since 1.1 */
    private Visibility _visibility = Visibility.PUBLIC;

    public String toString()
    {
        ToStringBuilder builder = new ToStringBuilder(this);

        builder.append("id", _id);
        builder.append("count", _count);
        builder.append("contributionsSchema", _contributionsSchema);
        builder.append("contributionsSchemaId", _contributionsSchemaId);
        builder.append("visibility", _visibility);

        return builder.toString();
    }
View Full Code Here

TOP

Related Classes of org.apache.hivemind.util.ToStringBuilder

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.