Next: , Previous: , Up: Object   [Index]


1.123.13 Object: printing

basicPrintNl

Print a basic representation of the receiver, followed by a new line.

basicPrintOn: aStream

Print a represention of the receiver on aStream

display

Print a represention of the receiver on the Transcript (stdout the GUI is not active). For most objects this is simply its #print representation, but for strings and characters, superfluous dollars or extra pair of quotes are stripped.

displayNl

Print a represention of the receiver, then put a new line on the Transcript (stdout the GUI is not active). For most objects this is simply its #printNl representation, but for strings and characters, superfluous dollars or extra pair of quotes are stripped.

displayOn: aStream

Print a represention of the receiver on aStream. For most objects this is simply its #printOn: representation, but for strings and characters, superfluous dollars or extra pair of quotes are stripped.

displayString

Answer a String representing the receiver. For most objects this is simply its #printString, but for strings and characters, superfluous dollars or extra pair of quotes are stripped.

print

Print a represention of the receiver on the Transcript (stdout the GUI is not active)

printNl

Print a represention of the receiver on stdout, put a new line the Transcript (stdout the GUI is not active)

printOn: aStream

Print a represention of the receiver on aStream

printString

Answer a String representing the receiver


Next: , Previous: , Up: Object   [Index]