User Profile

Collapse

Profile Sidebar

Collapse
babynailah
babynailah
Last Activity: Nov 7 '06, 01:54 AM
Joined: Sep 28 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • babynailah
    started a topic Is This Double Linked Function Correct??
    in Java

    Is This Double Linked Function Correct??

    FOR THE CELL PHONE NUMBERS THAT ARE ALEADY STORED ..I HAVE TO CREATE A LINKED LIST TO VIEW THE NUMBERS AND IT HAS TO BE VIEWED IN THE TEXTAREA...IS THIS CODE RIGHT??

    Code:
    public class DoubleLink1 implements CellPhoneShell 
    { 
    private NodeData head; 
    private NodeData tail; 
    public DoubleLink1() 
    { 
    this.tail = null; 
    this.head = null; 
    } 
    public void add(Contact data)
    ...
    See more | Go to post

  • babynailah
    started a topic help with this program...
    in Java

    help with this program...

    This is what i have to do and this is all i have....
    HELP ME PLEASE MY GRADE IN CLASS DEPENDS ON IT!!!!


    Your problem is to simulate certain aspects of a cell phone. The following features are required for the first assignment.


    The interface must be a GUI that resembles a cell phone.
    The cell phone must contain an array to hold a list of contacts. Each contact has a name and number. Make...
    See more | Go to post

  • babynailah
    replied to help with this program??
    in Java
    i did but it dont work with the code i already have
    See more | Go to post

    Leave a comment:


  • babynailah
    replied to help with this program??
    in Java
    Your problem is to simulate certain aspects of a cell phone. The following features are required for the first assignment.


    The interface must be a GUI that resembles a cell phone.
    The cell phone must contain an array to hold a list of contacts. Each contact has a name and number. Make the size of the array 5 and be sure to account for increasing the array size if more than 5 numbers are added.
    You should be...
    See more | Go to post

    Leave a comment:


  • babynailah
    replied to help with this program??
    in Java
    This is what i have for my cellphone program could you please make any corrections because it is not working???I will post what i should have in a minute


    CODE:
    import javax.swing.*;
    import javax.swing.bor der.*;
    import java.awt.*;
    import java.awt.event. *;
    import java.applet.*;



    public class CellPhone extends Applet implements ActionListener
    {
    ...
    See more | Go to post

    Leave a comment:


  • babynailah
    replied to help with this program??
    in Java
    thank you for the repy but would you happen to have a code that i could go by because words really dont apply to me as much as seeing the data.....and i mean when the data is shown it has to be shown in a textarea?
    See more | Go to post

    Leave a comment:


  • babynailah
    started a topic help with this program??
    in Java

    help with this program??

    I need to create this with java but for some reasons it is not working out for me.All that needs to be placed in a textarea......H ELP!!

    The cell phone must contain an array to hold a list of contacts. Each contact has a name and number. Make the size of the array 5 and be sure to account for increasing the array size if more than 5 numbers are added.
    You should be able to add a contact to the list.
    See more | Go to post
No activity results to display
Show More
Working...