Search:

Type: Posts; User: JNeether

Search: Search took 0.07 seconds.

  1. Re: How to Logically Break Down a System for Inheritance

    Apologies on the time to respond.

    I see what you are saying now, this should be very useful! I will let you know how the end product looks!
  2. Re: How to Logically Break Down a System for Inheritance

    It makes sense, however I have been encouraged to encapsulate the data fields. Therefor by making the Lists static it will not meet that criteria. I should mention I will eventually expand this...
  3. Re: How to Logically Break Down a System for Inheritance

    I do get that I could create any kind of a Collection of type <Location>, however whether I should have individual collections for each type (Continent, Country, ... etc) or have a collection that...
  4. Re: How to Logically Break Down a System for Inheritance

    Thanks aussie for the the reply. The problem I have is that I have the below Location class


    public class Location {

    /**
    * The name of the location.
    */
    private String name;
  5. How to Logically Break Down a System for Inheritance

    I am working on a Java program that takes in information on various locations (could be a continent, country, city or point of interest) and creates a database that can be searched through. Currently...
Results 1 to 5 of 5