This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 63553 - Writing to Output Window without terminating the line
Summary: Writing to Output Window without terminating the line
Status: RESOLVED FIXED
Alias: None
Product: platform
Classification: Unclassified
Component: Output Window (show other bugs)
Version: 4.x
Hardware: All Windows XP
: P4 blocker (vote)
Assignee: Milos Kleint
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-09-02 09:17 UTC by clover
Modified: 2008-12-22 23:07 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description clover 2005-09-02 09:17:12 UTC
I want to write to output tab, but I can't do it one line for one print. I 
tried to do something like this:
 
InputOutput io = IOProvider.getDefault().getIO("aaaa", false);
io.getOut().print("a");
io.getOut().print("b");
 
Since I used print, in the output tab I hoped to see:
ab
 
but, instead it is:
a
b
Comment 1 Milos Kleint 2005-09-05 07:18:59 UTC
this should be working in current trunk already. Any print(), or write() method
should result in non complete line.