Image img = ImageLoaderFactory.getInstance().getImage("icon.rateme");
graphicRateMe = new UISWTGraphicImpl(img);
boundsRateMe = img.getBounds();
width = boundsRateMe.width;
img = ImageLoaderFactory.getInstance().getImage("icon.rateme-button");
graphicRateMeButtonEnabled = new UISWTGraphicImpl(img);
graphicRateMeButton = graphicRateMeButtonEnabled;
width = Math.max(width, img.getBounds().width);
img = ImageLoaderFactory.getInstance().getImage("icon.rateme-button-disabled");
graphicRateMeButtonDisabled = new UISWTGraphicImpl(img);
width = Math.max(width, img.getBounds().width);
img = ImageLoaderFactory.getInstance().getImage("icon.rate.up");
graphicUp = new UISWTGraphicImpl(img);
width = Math.max(width, img.getBounds().width);
img = ImageLoaderFactory.getInstance().getImage("icon.rate.down");
graphicDown = new UISWTGraphicImpl(img);
width = Math.max(width, img.getBounds().width);
img = ImageLoaderFactory.getInstance().getImage("icon.rate.wait");
graphicWait = new UISWTGraphicImpl(img);
width = Math.max(width, img.getBounds().width);
super(COLUMN_ID, sTableID);
initializeAsGraphic(POSITION_LAST, width);
setAlignment(ALIGN_CENTER);
setWidthLimits(width, width);