Forum: Java May 4th, 2008 |
| Replies: 8 Views: 364 Re: object for an array Thanks a lot Vernon,
I was able to create an instance of a suspent, then i drew a nested loop to add an array of suspects. and randomly added color to the nose, eyes of the suspect.I now want to... |
Forum: Java May 4th, 2008 |
| Replies: 8 Views: 364 Re: object for an array Thank you Vernon for your help,
I have been able to get the program running. I created the robots which I named suspect and have an array of them with different color of noses. I now want to use a... |
Forum: Java May 4th, 2008 |
| Replies: 8 Views: 364 Re: object for an array Thanks for your response. I find it much easier to declare objects as private. What I find difficult at this time is actually creating the robot itself. Giving the following parameters "The width and... |
Forum: Java May 4th, 2008 |
| Replies: 8 Views: 364 Re: object for an array This is the triangle class:
public class Triangle extends JComponent {
private int[] xPoints, yPoints;
public Triangle(int x1, int y1, int x2, int y2, int x3, int y3) {
super(); |
Forum: Java May 3rd, 2008 |
| Replies: 8 Views: 364 object for an array I would like to draw an array of robots. How do i complete this class to draw the head, body, legs of a robot given that the robot is to be drawn within an invisible rectangular Container. The... |
Forum: Database Design Mar 28th, 2008 |
| Replies: 3 Views: 684 |
Forum: Database Design Mar 27th, 2008 |
| Replies: 3 Views: 684 Database design for a school' sports day Hello all,
I'm new in this group and with designing databases. I would like to design a databse for managing data about the sports day for a school.
I have been able to create the following tables:... |