Re: Netbeans?
>> :( That means the "problem" won't be fixed, not by Netbeans anyway. I guess >> the chances of me buying it are rather slim then... > > Then I should leave my hopes for a serious IDE in freebuilder (it is also > unstable, but it is not called beta2, but release 0.70) It may not have "beta" in the name, but AFAIK, FreeBuilder is still considered to be at a very early stage (I may be wrong though). Personally, I don't use it mainly because the editor is no where near my requirements yet, and I haven't gotten it to compile anything. But I think it looks very promesing, and hopefully, in time, it'll be my IDE of choice. / Peter Schuller PGP signature
Re: What's up with this?
My apoologies (and thanks) to all who responded to my poorly formulated original question in this thread. I was in a hurry to leave town for the weekend and did a much worse job than I had thought, of framing the issue. In the first place, the code fragment should have shown both paint methods as public as they were in my actual code. In the second place, I didn't define the problem as precisely as I might have. The key point in this fragment is this: both a.java and b.java import java.awt.*. As some have pointed out, since both reside in the same directory, strictly speaking it is not necessary to #import a from b. It in fact makes no difference whether b imports a or not. The key point is that all of a's methods tHat I call from b are accepted **EXCEPT** those methods which have parameters that are defined in java.awt; these are **NOT** recognized and rejected by the compiler. A more meaningful code fragment would have been this: //file a.java import java.awt.*; public class a { public void paint (Graphics g) { ... } public Point doSomethingWithAPoint (Point pt) { // fails to compile pt.x += 7; return pt; } public int doSomethingWithAnInt( int i ) { return i + 2; } } //file b.java: import java.awt.*; import a; public class b { public a A; ... b() { A = new a(); } public void paint (Graphics g) { // fails to compile A.paint(g); } public void doSomethingWithAPoint (Point pt) { // fails to compile return A.doSomethingWithAPoint( pt ); } public void doSomethingWithAnInt (int i) // compiler accepts. return A.doSomethingWithAnInt(i); } } The error message, by the way, is "Method paint(java.awt.Graphics) not found in class a." It almost seems as though the compiler thinks that the import of java.awt in a.java has nothing to do with the import of the same class in b.java. That is the problem I was trying to get around. Now that I have more properly defined the problem, are there any solutions?
Your Friends Will Want To See These!
Attention! Warning! Adults Only!Warning! Adults Only! If you are under 21 years of age, or not interested in sexually explicit material... please hit your keyboard delete button now and please excuse the intrusion. To REMOVE your name from our mailing list, send us email with REMOVE in the subject line. You need not read any further! Available NOW for only $9.95! Next 10 Days Only! WORLD RECORD SEX! Be There! See It Now On Video! Unbelievable ...But True! You Won't Believe Your Eyes!!! [As Seen on the Howard Stern Show] "The World's Biggest Gang Bang" See sexy Annabel Chong as she sets the world Gang Bang Record in this fantastic video documentary that chronicles her 24 hour sexathon with 251 men engaging in sexual intercourse and oral sex with her! Don't worry, you won't have to stay up 24 hours to watch it all. We've selected only the most exciting and red hot scenes for you...all in breathtaking living color with plenty of extreme close-ups! This video is guaranteed to knock your socks off and leave you breathless! You've never seen anything like it! Annabel takes on five men at a time! 90 minutes! Order Today! Only $9.95 plus $3 shipping and handling [Total $12.95]. "GANG BANG II" The Record Breaker!!! Starring Jasmin St. Claire! See Beautiful and Voluptious Jasmin St. Claire shatter Annabel's gang bang record by taking on 300 men in one 24 hour sex session! You won't believe your eyes at all the hot firey action that you will see as the new world record is established before your eyes as Jasmin takes on five men at a time for sexual intercourse and oral sex! Your friends will break down your door to see this video! You'll be the most popular guy in town! The action is truly unreal and you will see the best of it in living life-like color! Order Today and see Jasmin break the record! 90 minutes. Only $9.95 plus $3 shipping and handling [total $12.95]. Also Available... The Uncensored Authentic Underground... Pamela Anderson Lee & Tommy Lee Sex Video Tape! Everyone is talking about this exciting video! See Pam and Tommy engaging in sexual intercourse and oral sex in the car, on the boat and much, much more! A real collectors video! 30 minutes. Only $9.95 plus $3 shipping and Handling [total $12.95] "Tonya Harding Wedding Night Sex Video" Now see the beautiful Ice Skating Shame of the Olympics Tonya Harding engaging in sexual intercourse and oral sex on her wedding night with husband Jeff Gillooly! This "Bad Girl" is Hot! Don't miss this video! 30 minutes. Only $9.95 plus $3 shipping and handling [total $12.95] "Traci...I Love You" Starring Traci Lords Now see the most beautiful and popular porn star in her last adult video before she hit the big time! It's the blockbuster of the year...sensual...fiery and exposive! Traci Lords in her most erotic and controversial film ever! Don't Miss It! 90 minutes. Only $9.95 plus $3 shipping and handling [total $12.95] EMAIL SPECIAL! ORDER ANY FOUR VIDEOS AND GET THE FIFTH ONE FREE!!! Your order will be shipped via First Class Mail. All Shipments in plain unmarked wrapper. For Priority Mail - Add $5 For Overnight Express - add $15 You can order by Phone, Fax, Mail or Email. We accept all Major Credit Cards and checks by phone or fax. Visa - MasterCard - American Express - Discover 10 Day Money Back Guarantee! We know that you will be pleased with these Videos! To Email your order - DO NOT HIT REPLY ON YOUR KEYBOARD Send email to our special email address below: [EMAIL PROTECTED] [Note: If you order by email and do not receive an email acknowledgement within 24 hours, please phone our office at 718-287-3800] Phone our office 9am to 10 pm [eastern time] [718] 287-3800 to Order By Phone for FASTEST SERVICE! We can accept your credit card or check by phone Fax Your Order 24 hours per day to [718] 462-5920 You can fax your credit card information or your check Order by mail by sending $12.95 per video, cash, check, money order or major credit card [Visa, MasterCard, American Express or Discover] to TCPS, INC. 4718 18th Ave. Suite 135 Brooklyn, NY 11204 Make Checks & Money Orders Payable to TCPS, Inc. New York State Residents Please Add 85 cents for Sales Tax per Video! You must be over 21 years of age to order and give us your date of birth with your order! The Following Order Form is for Your Convenience! . Please ship me the following video tape[s]! Qty___Annabel Chong "World's Biggest Gang Bang" Qty__"Gang Bang II" Jasmin St. Claire Qty___"Pamela & Tommy Lee Sex Video Tape" Qty_ "Tonya Harding Wedding Night Sex Video Tape" Qty__"Traci I Love You" Traci Lords at $9.95 each plus $3.00 for shipping and handling per tape [$12.95 per video or "SPECIAL $51.80 for ALL FIVE"! Credit Card #__Exp D
Segmentation fault - always!
I tried out my (previously working) JDK 1.1.5 tools java and javac today (on a Redhat 5.0, i386 Linux 2.0.34 box), and I couldn't get anything to work - it would just seg fault right away! Earlier today, I could at least get java to display its version (java -version), then I upgraded my glibc to version 2.0.7, and now I can't even get any version information, it immediately seg faults. Any advice on getting things to work *much* appreciated! Cheers, Robert. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Robert P Biuk-Aghai, University of Macau, Faculty of Science and Technology http://hyperg.sftw.umac.mo/robert/tel: +853-3974365fax: +853-838314 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Microsoft isn't the answer. Microsoft is the question and the answer is no.
CMS Problem: Incorporate as a Nonprofit?
I asked a member of the Apache group for advice about our problem with configuration management, and he suggested that we incorporate. Once we did that, then we could have one representative license, and share access to a repository as one "internal" group. Does a nonprofit organization sound helpful for any other reasons? Would you feel comfortable joining? Today, I spoke with a friend of mine at Intersolv (he's a tools developer there) who agrees -- unless we solve the business and legal issue, we're going to have daunting technical issues to resolve. I'm willing to contribute time toward setting up a nonprofit. Perhaps we could get some costly legal assistance free via the Java Lobby. Does this seem to be a good idea? Why do I think we need to look beyond simple tools and scrips for solving this? Because anything we do to reimplement or extend CVS will take our focus off of our work on the JDK. Moreover, ensuring its correctness will not be easy. Maybe Michael has a different perspective, and has thought about this more carefully, though? At least for now, I think that procedures we implement among ourselves can improve the situation more than time spent on tools. How do the rest of you see this? Steve P.S. I've been experimenting with PRCS (see http://www.xcf.berkeley.edu/~jmacd/prcs.html) as a simpler alternative to CVS. I'm not ready to make a pronouncement about its quality yet, but in terms of applying a method, an easier tool for all of us to agree to use individually might help!