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 + "]";
}
}