Giter Site home page Giter Site logo

inventorymgment's Introduction

InventoryMgment

For this project the following was used: IntelliJ IDEA version 2020.1.4 JDK 11 Main Configuration: JRE SDK of "C482 Nicole Mau" module

UML diagram and GUI mockup supplied in PDF and word files separatley.

"Part" class in it's own java file:

/**

Supplied class Part.java / /* *

@author Place Your Name Here */ public abstract class Part { private int id; private String name; private double price; private int stock; private int min; private int max; public Part(int id, String name, double price, int stock, int min, int max) { this.id = id; this.name = name; this.price = price; this.stock = stock; this.min = min; this.max = max; }

/**

@return the id / public int getId() { return id; } /*

@param id the id to set / public void setId(int id) { this.id = id; } /*

@return the name / public String getName() { return name; } /*

@param name the name to set / public void setName(String name) { this.name = name; } /*

@return the price / public double getPrice() { return price; } /*

@param price the price to set / public void setPrice(double price) { this.price = price; } /*

@return the stock / public int getStock() { return stock; } /*

@param stock the stock to set / public void setStock(int stock) { this.stock = stock; } /*

@return the min / public int getMin() { return min; } /*

@param min the min to set / public void setMin(int min) { this.min = min; } /*

@return the max / public int getMax() { return max; } /*

@param max the max to set */ public void setMax(int max) { this.max = max; } }

inventorymgment's People

Contributors

nicole1020 avatar

Watchers

 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.