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

org.noos.xing.yasaf.plaf.bean.AndSource Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
package org.noos.xing.yasaf.plaf.bean;

import org.noos.xing.yasaf.bean.Source;

/**
 * @author Angelo De Caro ([email protected])
 */
public class AndSource implements Source {
    protected Source one, two;

    public AndSource(Source one, Source two) {
        this.one = one;
        this.two = two;
    }

    public Object getSource() {
        return one.getSource();
    }

    public Object[] getSources() {
        return new Object[]{one.getSource(), two.getSource()};
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy