Package testsubjects

Source Code of testsubjects.ProtectedFieldCollaborator

package testsubjects;

import testannotations.KindaInject;
import testinterfaces.ValueGetter;

public class ProtectedFieldCollaborator
{
    @KindaInject
    ProtectedField delegate;

    public String getProtectedValue()
    {
        return delegate.protectedValue;
    }

    public void setProtectedValue(String newValue)
    {
        delegate.protectedValue = newValue;
    }

    public ValueGetter getValueGetter()
    {
        return new ValueGetter()
        {
            @Override
            public String getValue()
            {
                return delegate.protectedValue;
            }
        };
    }
}
TOP

Related Classes of testsubjects.ProtectedFieldCollaborator

TOP
Copyright © 2018 www.massapi.com. 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.