hi,
according to common definition its just plain code but without maintaining java language specification in details:
Code:
get graphics context
move sprite to new direction
draw sprite using graphics context
Code:
Grahpics g = getGraphics();
mySprite.move(newX, newY);
mySprite.paint(g);
http://en.wikipedia.org/wiki/Pseudocode
if you are using decent IDE (like NetBeans+MobilitPack) you can fill JavaDoc comments/tags for documentation just like in real midp docs:
Sprite.collidesWith(....)
regards,
Peter