Re: Bluej help with Java, how can I make HashSet or ArrayList? Programming Software Development by peter_budo BlueJ is just a tool and doesn't provide different/unusual/strange/special Java code, so no point mentioning it. As for HashSet you can read this [URL="http://java.sun.com/docs/books/tutorial/collections/interfaces/set.html"]tutorial[/URL] Re: BlueJ - How do I print strings from subclasses? Programming Software Development by Phaelax BlueJ? Are schools seriously still using that? Re: Bluej Programming Software Development by ObSys …t help then go and buy the [Objects First with BlueJ](https://www.google.co.uk/shopping/product/10349291551663799947?sclient=psy…-ab&q=BlueJ+5th+edition&oq=BlueJ+5th+edition&pbx=1&bav=…) book. It's written by the professors who created BlueJ. It's a really good guide from basics all the… Bluej Programming Software Development by Helpmeplease123 How do you add a membership records in java(bluej) First Name, Last Name, phone number. Please can you help me Re: Bluej Programming Software Development by ObSys I'm assuming that because you are using BlueJ, you are in your first semester of a Computer Science Course or related course. On this assumption I am going to recommend you talk to a tutor or to some class mates as the question seems to be related to a specific piece of code provided by your tutor. Re: Bluej Programming Software Development by ObSys … by Kolling and Barnes. These are the people who wrote blueJ and their book is very informative with lots of good… BlueJ and Running an Applet On The Server Programming Software Development by sciprog1 Hello, I have a project in BlueJ, called Game. Inside this project, I have the…CODE]<html> <!-- This file automatically generated by BlueJ Java Development --> <!-- Environment. It is regenerated automatically…--> <!-- when the applet is next run inside BlueJ. Save into a --> <!-- directory outside of … BlueJ problem Programming Software Development by Kamikazi23xl … i am completely clueless :o . My friend gave me a BlueJ program which is supposed to make it easier but i… get me started? P.S. I tried the tutorial that BlueJ has but i cant open it because it is a… Bluej help with Java, how can I make HashSet or ArrayList? Programming Software Development by 9w43 I have 2 classes inside bluej, member class and trip class so when I make a … which needs to store those students. If you have used bluej you know what I am talking about. here is my… BlueJ Some common problems Programming Software Development by gahhon … few problems with my lab questions. and i am using BlueJ software for my lab work. 1. Are two objects equal… class code as sourse code? 3. What is documentation in BlueJ meaning? Re: BlueJ problem Programming Software Development by freesoft_2000 Hi everyone, In my opinion, BlueJ is difficult to use even though it was meant for … Re: BlueJ and Networking Programming Software Development by kramerd I am not getting the same error you are, but my simple TCP client/server program does not work in a single instance of BlueJ. However, if I run BlueJ twice, then I can run the server in one instance and the client in the other and that works. Re: BlueJ Some common problems Programming Software Development by rubberman Never having used BlueJ I cannot answer #3. As for #1, if two objects … Re: BlueJ Some common problems Programming Software Development by Slavi … age. Also you could tell that they are different in BlueJ as it creates 2 different graphical objects that you can… Re: Bluej Music player Programming Software Development by rproffitt …. Also, it looks a lot like what was in the BlueJ programming book. https://github.com/drblinken/informatica-examples/tree/master…/eclipse/BlueJ/src/chapter11/musicplayer for example. Since it's not homework… Re: Bluej Music player Programming Software Development by tor-arne …. Also, it looks a lot like what was in the BlueJ programming book. https://github.com/drblinken/informatica-examples/tree/master…/eclipse/BlueJ/src/chapter11/musicplayer for example. Since it's not homework… BlueJ and Networking Programming Software Development by sciprog1 Hello Members, Does BlueJ support Networking? Can you have the main() of Client.java and Server.java running at same time? I always get this "Your program is running.You cannot start another execution......". Any help would be greatly appreciated. Thank you!! sciprog1 BlueJ, access collection in multiple classes. Programming Software Development by BIG J Hi, I am doing some blueJ work but am not the best at it. I have … BlueJ - How do I print strings from subclasses? Programming Software Development by Derek_4 I am working on a project in BlueJ which I have to add an "Event Post" … Bluej Music player Programming Software Development by tor-arne … do, any help would be appreciated thanks :) This is a bluej assignment, not asking for you to do my school assignment… Re: Bluej Programming Software Development by JamesCherrill DaniWeb Member Rules (which you agreed to when you signed up) include: "Do provide evidence of having done some work yourself if posting questions from school or work assignments" http://www.daniweb.com/community/rules Post what you have done so far and someone will help you from there. Re: Bluej Programming Software Development by Helpmeplease123 Do you mind if you help i will send what i have done and plus assignment. Re: Bluej Programming Software Development by JamesCherrill Post what you have done here and someone will help. Explain where you are getting stuck - more more info you give the better we can help. Re: Bluej Programming Software Development by Helpmeplease123 public class Book { // The fields. private String author; private String title; private int pages; private String refNumber; private int identityNumber; /** * Set the author and title fields when this object */ public Book(String bookAuthor,… Re: Bluej Programming Software Development by Helpmeplease123 1. book records a. add a new book b. for a given book id number print the book details c. print a list of books 2. membership records a.add a new member b.member id number print the member detail c. print all members Can you explain to me how i can do this because i am … Re: Bluej Programming Software Development by stultuske 1a you can't add a book in the book class. instantiate it in your main method, and add it to an array or a list. 1b on your instance of book, call the printDetails method 1c iterate over your array or list, printing the info of each of them question two is basically identical. Re: Bluej Programming Software Development by Helpmeplease123 So in small steps can you explain to me because i am new please. Can you explain the structure to me as well. Re: Bluej Programming Software Development by Helpmeplease123 So the public class book and the field/method go into the library. Re: Bluej Programming Software Development by stultuske depends on how you mean. most likely, your library class will have a list or an array in which you store books, but Book will still be a seperate class Re: Bluej Programming Software Development by Helpmeplease123 I have done this Book - Public class book Libray - Public Class library Membership - Public Class Membership And where does the arraylist goes to keep my records.