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

freeseawind.ninepatch.common.NinePatchRegion Maven / Gradle / Ivy

The newest version!
package freeseawind.ninepatch.common;

import java.util.List;

/**
 *
 * @author freeseawind@github
 *
 */
public class NinePatchRegion
{
    private List fixRegions;
    private List patchRegions;

    public NinePatchRegion(List fixRegions, List patchRegions)
    {
        this.fixRegions = fixRegions;
        this.patchRegions = patchRegions;
    }

    public List getFixRegions()
    {
        return fixRegions;
    }

    public List getPatchRegions()
    {
        return patchRegions;
    }

    @Override
    public String toString()
    {
        return "NinePatchRegion [fixRegions=" + fixRegions + ", patchRegions="
                + patchRegions + "]";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy