Skip to content

Sofka IntroductionPOO_JAVA is a JAVA project excercises that contain 6 kind of classes with their attribute, constructors and methods.

Notifications You must be signed in to change notification settings

efrainlav/IntroductionPOO_JAVA

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IntroductionPOO_JAVA

IntroductionPOO_JAVA is a JAVA project excercises that contain 6 kind of classes with their attribute, constructors and methods.

Installation

Just cpoy-paste the file repository on your NETBEANS project directory. Teh local directory used was:

C:\Users\XXXXX\Documents\NetBeansProjects\IntrodutionObjetcs

Classes

classDiagram
      class Person{
          
          + setName(String name)
          + getName(): String
          + name: String
          + lastName1: String
          + lastName2: String
          + dateBirth: Date
          + height: float 
      }

      class Fruit{
          - setColor(String name)
          - getColors(): ArrayList<String> 
          - getName()
          + name: String
          - averageWeight: float 
          + colors: ArrayList<String>
          + String color
      }

      class BankAccount{
          + setActivated(boolean activated)
          + getActivated(): boolean
          - accountNumber: int
          # activated: boolean 
      }
Loading
classDiagram
   
      class Ball{
          + radio: float 
          + weight: float 
          + obtenerRadio()
          + obtenerPeso()
      }

      class Car{
          + idCar: int 
          + weight: double 
          + height: double 
          + size: double 
          + numberDoor: int 
          + model: String 
          + speed: int 
          + getIdCar()
          + setIdCar(int idCar)
          + getModel()
          + setModel(String model)
          + increaseSpeed(int increment)
      }

      class Pet{
          + name: String 
          + species: String 
          + age: int 
          + play()
          + pet()
          + bark(String specie)
      }
Loading

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

About

Sofka IntroductionPOO_JAVA is a JAVA project excercises that contain 6 kind of classes with their attribute, constructors and methods.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages