package com.chicagoandroid.w115;
public class Page
{
private Integer imageResourceId;
private String caption;
public Page(Integer imageResourceId, String caption)
{
this.imageResourceId = imageResourceId;
this.caption = caption;
}
public Integer getImageResourceId()
{
return imageResourceId;
}
public String getCaption()
{
return caption;
}
}
|
|