package org.xmlvm.iphone;
public class UITableColumn
{
public String title;
public String id;
public float width;
public UITableColumn(String title, String id, float width)
{
this.title = title;
this.id = id;
this.width = width;
}
}