void OrderedOfString_drawItem (I, Graphics g, long index, double xWC, double yWC) {
	iam (OrderedOfString);
	if (index > 0 && index <= my size) {
		SimpleString_draw ( (SimpleString) my item[index], g, xWC, yWC);
	}
}
Esempio n. 2
0
void Categories_drawItem (Categories me, Graphics g, long position, double xWC, double yWC) {
	if (position < 1 || position > my size) {
		return;
	}
	SimpleString_draw ((SimpleString) my item[position], g, xWC, yWC);
}
Esempio n. 3
0
void OrderedOfString_drawItem (OrderedOfString me, Graphics g, long index, double xWC, double yWC) {
	if (index > 0 && index <= my size) {
		SimpleString_draw (my at [index], g, xWC, yWC);
	}
}