Giter VIP home page Giter VIP logo

jv-pecs's Introduction

jv-pecs

  1. You have abstract class Machine and three sub-classes: Bulldozer, Excavator and Track.

  2. Each machine has the ability to start working.

  3. There is MachineProducer interface created. The goal of this interface is to create a list of specific machines (Bulldozer, Excavator and Track). Please parameterize it and replace Object with the right option.

    public interface MachineProducer<PARAMETRIZE ME>{ ... }
  4. Create three classes implementing MachineProducer interface. As a result, in these implementations your method get() should return the list of specific machines. For example:

    List<Bulldozer> get();

    or

    List<Track> get();

    or

    List<Excavator> get();
  5. There is also MachineService interface created. You need to parameterize it as well and replace Object in method signature with the right option (use PECS):

    • the method getAll(Class type) produces the list of machines based on the input param.
    • the method fill(List<Object> machines, Object value) fills the machines list with passed value.
    • the method startWorking() should be able to accept a list containing any Machine.
  6. Create a class implementing MachineService and realize these methods:

  • getAll(Class type): based on the input class type, choose the right MachineProducer implementation from those you created earlier, and call its get() method.

For example: if (type == Bulldozer.class) - we should call the get() method from right implementation of MachineProducer (the one that will return List<Bulldozer>) and return these machines.

  • fill(List<Object> machines, Object value) - add the passed value (which can be of any Machine subtype) to the passed list n times (where n is the initial size of the list)

  • startWorking() - call doWork on every Machine in the list.

jv-pecs's People

Contributors

boroda4436 avatar kseniiamakarova avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.