Class Resultat

java.lang.Object
  extended byResultat
All Implemented Interfaces:
java.awt.event.ActionListener, java.util.EventListener

public class Resultat
extends java.lang.Object
implements java.awt.event.ActionListener

la class Resultat est la class permettant d'afficher les resultats dans une fenetre structuré

Author:
Martins Alxandre

Field Summary
(package private)  javax.swing.JLabel errs
           
(package private)  javax.swing.JLabel ERRS
           
(package private)  javax.swing.JLabel errt
           
(package private)  javax.swing.JLabel ERRT
           
(package private)  javax.swing.JFrame fenetre
           
(package private)  double inf
           
(package private)  double majo
           
(package private)  MyPolynome p
           
(package private)  java.awt.Container pane
           
(package private)  double pas
           
(package private)  javax.swing.JButton performance
           
(package private)  javax.swing.JButton quitter
           
(package private)  Simpson s
           
(package private)  javax.swing.JLabel simp
           
(package private)  double sup
           
(package private)  Trapeze t
           
(package private)  javax.swing.JLabel trap
           
(package private)  javax.swing.JLabel vals
           
(package private)  javax.swing.JLabel VALS
           
(package private)  javax.swing.JLabel valt
           
(package private)  javax.swing.JLabel VALT
           
 
Constructor Summary
Resultat(MyPolynome p, double inf, double sup, double pas, double majo)
          Le constructeur recupere toutes les valeurs saisie par l'utilisateur et construit la fenetre sans l'afficher
 
Method Summary
 void actionPerformed(java.awt.event.ActionEvent e)
          C'est la gestion des commandes.
 void view()
          C'est la fonction qui affiche la fenetre
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

s

Simpson s

t

Trapeze t

p

MyPolynome p

inf

double inf

sup

double sup

pas

double pas

majo

double majo

fenetre

javax.swing.JFrame fenetre

pane

java.awt.Container pane

simp

javax.swing.JLabel simp

trap

javax.swing.JLabel trap

valt

javax.swing.JLabel valt

vals

javax.swing.JLabel vals

errt

javax.swing.JLabel errt

errs

javax.swing.JLabel errs

VALT

javax.swing.JLabel VALT

VALS

javax.swing.JLabel VALS

ERRT

javax.swing.JLabel ERRT

ERRS

javax.swing.JLabel ERRS

performance

javax.swing.JButton performance

quitter

javax.swing.JButton quitter
Constructor Detail

Resultat

public Resultat(MyPolynome p,
                double inf,
                double sup,
                double pas,
                double majo)
Le constructeur recupere toutes les valeurs saisie par l'utilisateur et construit la fenetre sans l'afficher

Method Detail

view

public void view()
C'est la fonction qui affiche la fenetre


actionPerformed

public void actionPerformed(java.awt.event.ActionEvent e)
C'est la gestion des commandes. Quitter quitte l'application

Specified by:
actionPerformed in interface java.awt.event.ActionListener