All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.cuf.debug.DoubleDelegateAccess Maven / Gradle / Ivy

The newest version!
package net.sf.cuf.debug;

import net.sf.cuf.model.DelegateAccess;


public class DoubleDelegateAccess implements DelegateAccess
{

    private DelegateAccess mDA1;
    private DelegateAccess mDA2;

    public DoubleDelegateAccess( final DelegateAccess pDA1, final DelegateAccess pDA2)
    {
        mDA1 = pDA1;
        mDA2 = pDA2;
    }

    public Object getValue(final Object pValue)
    {
        return mDA2.getValue( mDA1.getValue( pValue));
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy