Party correction

This commit is contained in:
sio 2024-10-03 11:16:46 +02:00
commit e48c1573e1
13 changed files with 1693 additions and 0 deletions

BIN
build.xml Normal file

Binary file not shown.

3
manifest.mf Normal file
View File

@ -0,0 +1,3 @@
Manifest-Version: 1.0
X-COMMENT: Main-Class will be added automatically by build

1286
nbproject/build-impl.xml Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,8 @@
build.xml.data.CRC32=c02fed13
build.xml.script.CRC32=6989c214
build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
nbproject/build-impl.xml.data.CRC32=c02fed13
nbproject/build-impl.xml.script.CRC32=d3648959
nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48

View File

@ -0,0 +1,97 @@
annotation.processing.enabled=true
annotation.processing.enabled.in.editor=false
annotation.processing.processors.list=
annotation.processing.run.all.processors=true
annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output
application.title=Party_1
application.vendor=famille Thevenot
build.classes.dir=${build.dir}/classes
build.classes.excludes=**/*.java,**/*.form
# This directory is removed when the project is cleaned:
build.dir=build
build.generated.dir=${build.dir}/generated
build.generated.sources.dir=${build.dir}/generated-sources
# Only compile against the classpath explicitly listed here:
build.sysclasspath=ignore
build.test.classes.dir=${build.dir}/test/classes
build.test.results.dir=${build.dir}/test/results
# Uncomment to specify the preferred debugger connection transport:
#debug.transport=dt_socket
debug.classpath=\
${run.classpath}
debug.modulepath=\
${run.modulepath}
debug.test.classpath=\
${run.test.classpath}
debug.test.modulepath=\
${run.test.modulepath}
# Files in build.classes.dir which should be excluded from distribution jar
dist.archive.excludes=
# This directory is removed when the project is cleaned:
dist.dir=dist
dist.jar=${dist.dir}/Party_1.jar
dist.javadoc.dir=${dist.dir}/javadoc
dist.jlink.dir=${dist.dir}/jlink
dist.jlink.output=${dist.jlink.dir}/Party_1
endorsed.classpath=
excludes=
includes=**
jar.compress=false
javac.classpath=
# Space-separated list of extra javac options
javac.compilerargs=
javac.deprecation=false
javac.external.vm=true
javac.modulepath=
javac.processormodulepath=
javac.processorpath=\
${javac.classpath}
javac.source=21
javac.target=21
javac.test.classpath=\
${javac.classpath}:\
${build.classes.dir}
javac.test.modulepath=\
${javac.modulepath}
javac.test.processorpath=\
${javac.test.classpath}
javadoc.additionalparam=
javadoc.author=false
javadoc.encoding=${source.encoding}
javadoc.html5=false
javadoc.noindex=false
javadoc.nonavbar=false
javadoc.notree=false
javadoc.private=false
javadoc.splitindex=true
javadoc.use=true
javadoc.version=false
javadoc.windowtitle=
# The jlink additional root modules to resolve
jlink.additionalmodules=
# The jlink additional command line parameters
jlink.additionalparam=
jlink.launcher=true
jlink.launcher.name=Party_1
main.class=party.TestParty
manifest.file=manifest.mf
meta.inf.dir=${src.dir}/META-INF
mkdist.disabled=false
platform.active=default_platform
run.classpath=\
${javac.classpath}:\
${build.classes.dir}
# Space-separated list of JVM arguments used when running the project.
# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value.
# To set system properties for unit tests define test-sys-prop.name=value:
run.jvmargs=
run.modulepath=\
${javac.modulepath}
run.test.classpath=\
${javac.test.classpath}:\
${build.test.classes.dir}
run.test.modulepath=\
${javac.test.modulepath}
source.encoding=UTF-8
src.dir=src
test.src.dir=test

15
nbproject/project.xml Normal file
View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://www.netbeans.org/ns/project/1">
<type>org.netbeans.modules.java.j2seproject</type>
<configuration>
<data xmlns="http://www.netbeans.org/ns/j2se-project/3">
<name>Party_1</name>
<source-roots>
<root id="src.dir"/>
</source-roots>
<test-roots>
<root id="test.src.dir"/>
</test-roots>
</data>
</configuration>
</project>

View File

@ -0,0 +1,33 @@
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
package Metier;
/**
*
* @author famille Thevenot
*/
public class Accessoire extends Produit{
private Produit compatibleAvec;
public Accessoire(String designation, double prix, String marque, Produit compatibleAvec) {
super(designation, prix, marque);
this.compatibleAvec = compatibleAvec;
}
@Override
public String afficherCaracteristiques() {
return "Accessoire: " + designation + ", Prix: " + prix + "€, Marque: " + marque +
", Compatible avec: " + compatibleAvec.designation;
}
@Override
public String afficherCoutHeureReparation() {
return "Cet accessoire n'est pas réparable.";
}
}

View File

@ -0,0 +1,34 @@
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
package Metier;
/**
*
* @author famille Thevenot
*/
public class Electromenager extends Produit implements Reparable{
private char classeEnergetique; // A, B, C, D ou E
public Electromenager(String designation, double prix, String marque, char classeEnergetique) {
super(designation, prix, marque);
this.classeEnergetique = classeEnergetique;
}
@Override
public double calculerCoutReparation(int heures) {
double coutEnlevement = 50.0;
return (heures * COUT_HORAIRE) + coutEnlevement;
}
@Override
public String afficherCaracteristiques() {
return "Appareil Électroménager: " + designation + ", Prix: " + prix + "€, Marque: " + marque + ", Classe énergétique: " + classeEnergetique;
}
@Override
public String afficherCoutHeureReparation() {
return "Coût d'une heure de réparation: " + COUT_HORAIRE + "€ + "+FRAIS_ENLEVEMENT+"€ (frais d'enlèvement)";
}
}

54
src/Metier/Magasin.java Normal file
View File

@ -0,0 +1,54 @@
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
package Metier;
import java.util.ArrayList;
/**
*
* @author famille Thevenot
*/
public class Magasin {
private String nommagasin;
private ArrayList <Produit> lesProduits=new ArrayList<Produit>();
public Magasin(String nommagasin) {
this.nommagasin = nommagasin;
}
public String getNommagasin() {
return nommagasin;
}
public void setNommagasin(String nommagasin) {
this.nommagasin = nommagasin;
}
public ArrayList<Produit> getLesProduits() {
return lesProduits;
}
public void setLesProduits(ArrayList<Produit> lesProduits) {
this.lesProduits = lesProduits;
}
@Override
public String toString() {
return "Magasin{" + "nommagasin=" + nommagasin + ", lesProduits=" + lesProduits + '}';
}
public void chargerLesProduits(){
Produit laveLinge = new Electromenager("Lave-linge", 500, "Samsung", 'A');
Produit ordinateur = new Ordinateur("PC Gamer", 1200, "Asus", "Intel i7", 16, 1000, "NVIDIA RTX 3080");
Produit souris = new Accessoire("Souris", 50, "Logitech", ordinateur);
lesProduits.add(souris);
lesProduits.add(ordinateur);
lesProduits.add(laveLinge);
}
}

View File

@ -0,0 +1,41 @@
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
package Metier;
/**
*
* @author famille Thevenot
*/
public class Ordinateur extends Produit implements Reparable{
private String processeur;
private int memoireVive; // en Go
private int tailleDisqueDur; // en Go
private String carteGraphique;
public Ordinateur(String designation, double prix, String marque, String processeur, int memoireVive, int tailleDisqueDur, String carteGraphique) {
super(designation, prix, marque);
this.processeur = processeur;
this.memoireVive = memoireVive;
this.tailleDisqueDur = tailleDisqueDur;
this.carteGraphique = carteGraphique;
}
@Override
public double calculerCoutReparation(int heures) {
return heures * COUT_HORAIRE;
}
@Override
public String afficherCaracteristiques() {
return "Ordinateur: " + designation + ", Prix: " + prix + "€, Marque: " + marque +
", Processeur: " + processeur + ", Mémoire vive: " + memoireVive + " Go, " +
"Taille du disque dur: " + tailleDisqueDur + " Go, Carte graphique: " + carteGraphique;
}
@Override
public String afficherCoutHeureReparation() {
return "Coût d'une heure de réparation: " + COUT_HORAIRE + "";
}
}

56
src/Metier/Produit.java Normal file
View File

@ -0,0 +1,56 @@
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
package Metier;
/**
*
* @author famille Thevenot
*/
public class Produit { //peut être abstraite
protected String designation;
protected double prix;
protected String marque;
public Produit(String designation, double prix, String marque) {
this.designation = designation;
this.prix = prix;
this.marque = marque;
}
// Méthode pour obtenir les informations du produit
public String afficherCaracteristiques(){
return designation+prix+marque;
}
// Méthode pour afficher le coût d'une heure de réparation (si applicable)
public String afficherCoutHeureReparation(){
return "pas de prix";
}
public String getDesignation() {
return designation;
}
public void setDesignation(String designation) {
this.designation = designation;
}
public double getPrix() {
return prix;
}
public void setPrix(float prix) {
this.prix = prix;
}
public String getMarque() {
return marque;
}
public void setMarque(String marque) {
this.marque = marque;
}
}

17
src/Metier/Reparable.java Normal file
View File

@ -0,0 +1,17 @@
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Interface.java to edit this template
*/
package Metier;
/**
*
* @author famille Thevenot
*/
public interface Reparable {
double COUT_HORAIRE = 20.0;
double FRAIS_ENLEVEMENT =50.0;
// Méthode pour calculer le coût de la réparation
double calculerCoutReparation(int heures);
}

49
src/party/TestParty.java Normal file
View File

@ -0,0 +1,49 @@
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Main.java to edit this template
*/
package party;
import Metier.Accessoire;
import Metier.Electromenager;
import Metier.Magasin;
import Metier.Ordinateur;
import Metier.Produit;
import Metier.Reparable;
import java.io.PrintStream;
import java.io.UnsupportedEncodingException;
/**
*
* @author famille Thevenot
*/
public class TestParty {
/**
* @param args the command line arguments
*/
public static void main(String[] args) throws UnsupportedEncodingException {
// Changer l'encodage en UTF-8
PrintStream ps = new PrintStream(System.out, true, "UTF-8");
System.setOut(ps);
//Déclaration
Magasin leMag=new Magasin("Party");
leMag.chargerLesProduits();
// Affichage des caractéristiques et coûts éventuels de réparation
for (Produit produit : leMag.getLesProduits()) {
System.out.println(produit.afficherCaracteristiques());
System.out.println(produit.afficherCoutHeureReparation());
if (produit instanceof Reparable) {
Reparable reparableProduit = (Reparable) produit;
double coutReparation = reparableProduit.calculerCoutReparation(10);
System.out.println("Le coût de réparation pour 10 heures de travail pour le produit est de : " + coutReparation + "");
}
System.out.println("--------------------");
}
}
}