Does anybody have an opinion on the importance of this? I'm using JBuilder, which has a gray line telling you where to break lines... however, I like 1152 screen resolution and that standard seems unnecessarily narrow (only about half a screen). Anybody stuck with coding on a SVGA monitor should look for another employer, in my opinion! But if it might cost me a point on general considerations, I'll shorten my lines.
Fly by Night Consultants<br /> <blockquote><font size="1" face="Verdana, Arial">quote:</font><hr><i>I climbed on the back of a giant albatross<br />which flew through a crack in the cloud<br />to a place where happiness reigned...<br />all year 'round<br />the music played ever so loudly!</i><p><a href="http://thomasfly.com/songs/Traffic/Hole_in_my_Shoe_qt.htm" target="_blank" rel="nofollow">Hole in My Shoe</a><hr></blockquote>
I'd just be careful with JBuilder for this assignment. If you are simply using it as a text editor, that might give you some code completion, then you should be fine. If you use it for building your GUI, I'd stop using it. Because JBuilder puts in a lot of propriatary code into your GUI that will not be accepted by the assessor. I think the standard is 80 columns for a single line. Mark
I think the standard is 80 columns for a single line.
Absolutely. That is a Java coding convention. You may lose a point or two if you don't comply with that. Michael Morris
Any intelligent fool can make things bigger, more complex, and more violent. It takes a touch of genius - and a lot of courage - to move in the opposite direction. - Ernst F. Schumacher
Thomas Fly
Ranch Hand
Joined: Sep 09, 2002
Posts: 164
posted
0
JBuilder has an XYLayout (essentially "null") that's useful in the design stage, and which requires a Borland library, but I'm mostly using GridBagLayout. I've already elimated "any residual dependency upon that" (namely, any borland import) since presumably it would result in automatic flunking. I guess I'd better make sure my lines are according to spec as well. Thanks.