Search:

Type: Posts; User: Norm

Search: Search took 0.10 seconds.

  1. Replies
    6
    Views
    1,818

    Re: How can I do this in Java Please??

    Where does your code create an instance of the Chart class and call any of its methods?
    Methods are only executed if they are called.

    You need to create an instance of the Chart class and call...
  2. Replies
    6
    Views
    1,818

    Re: How can I do this in Java Please??

    If you can split the existing method into multiple methods in one class, then it should be an easy step to move some of those methods to another class.
  3. Replies
    6
    Views
    1,818

    Re: How can I do this in Java Please??

    Make a list of the functions that the code does. Then take a part of the code that does a one of those function and move it to its own method.
    I don't know why you want to create a separate class. ...
Results 1 to 3 of 3