IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

avec Java Discussion :

Transformation en applet [Débutant(e)]


Sujet :

avec Java

  1. #1
    Candidat au Club
    Profil pro
    Inscrit en
    Mai 2008
    Messages
    3
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2008
    Messages : 3
    Points : 2
    Points
    2
    Par défaut Transformation en applet
    J'ai un petit projet scolaire a mettre en applet et je bloque a un endroit.

    jai cette erreur qui s'affiche lrosque je compile sous l'invite de commande:

    fenetre.java:105
    Adapteur is not abstractand does not override abstract method window Deactivated (java.awt.event.windowevent) in java.awt.event.windowlistener
    class adaptateur implements WindowListener


    je me permet de mettre le fichier a compilé:


    MERCI d'avance pour votre aide

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    import java.awt.* ;
    import java.awt.event.*;
    import java.applet.*;
    public class Fenetre extends Applet{
    	protected Panel p,p1,p2,p3,p4;
    	protected TextArea texte;
    	protected Button bouton1 ;
    	protected CheckboxGroup cbg;
    	protected Checkbox chb1, chb2, chb3;
    	protected Choice c;
    	protected TextField tf1, tf2;
    	protected Delegue delegue;
    	protected Adaptateur adapt;
     
     
    	public void init() {
    		p=new Panel();
    		p.setLayout(new GridLayout(4,1));
     
    		p1=new Panel();
    		p1.setLayout(new FlowLayout());
    		p1.add(new Label("Type d'emprunt"));
    		cbg=new CheckboxGroup();
    		chb1=new Checkbox("immobilier", cbg, true);
    		p1.add(chb1);
    		chb2=new Checkbox("achat de véhicule", cbg, false);
    		p1.add(chb2);
    		chb3=new Checkbox("consommation", cbg, false);
    		p1.add(chb3);
    		p.add(p1);
     
    		p2=new Panel();
    		p2.setLayout(new FlowLayout());	
    			p2.add(new Label("Montant demandé"));
    			tf1=new TextField(10);
    			p2.add(tf1);
    			p2.add(new Label("Nombres d'années de remboursement "));
    			c=new Choice();
    				c.addItem("3");
    				c.addItem("4");
    				c.addItem("5");
    				c.addItem("6");
    				c.addItem("7");
    				c.addItem("8");	
    				c.addItem("9");
    				c.addItem("10");
    				c.addItem("11");
    				c.addItem("12");
    				c.addItem("13");
    				c.addItem("14");
    				c.addItem("15");
    				c.addItem("16");
    				c.addItem("17");
    				c.addItem("18");
    				c.addItem("19");
    				c.addItem("20");
    				c.addItem("21");
    				c.addItem("22");
    				c.addItem("23");
    				c.addItem("24");
    				c.addItem("25");
    				c.addItem("26");
    				c.addItem("27");
    				c.addItem("28");
    				c.addItem("29");
    				c.addItem("30");
    			p2.add(c);
    			p.add(p2);
     
    		p3=new Panel();
    		p3.setLayout(new FlowLayout());
    		p3.add(new Label("Revenu mensuel"));
    		tf2=new TextField(10);
    		p3.add(tf2);
    		p.add(p3);
     
    		p4=new Panel();
    		p4.setLayout(new FlowLayout());
    		bouton1=new Button("Valider");
    		p4.add(bouton1);
    		p.add(p4);
     
    		add("North", p);
     
    		texte=new TextArea();
    		add("South", texte);
     
     
    delegue=new Delegue(this);
    adapt=new Adaptateur(delegue);
     
     
     
     
    		}
    	}
     
    class Delegue {
    	protected Fenetre fen;
    Delegue(Fenetre f){
    	fen=f;
    	}
     
    }
    class Adaptateur implements WindowListener {
    protected Delegue delegue;
    Adaptateur(Delegue d) {
    delegue=d;
    	}
     
     
    	}

  2. #2
    Candidat au Club
    Profil pro
    Inscrit en
    Mai 2008
    Messages
    3
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2008
    Messages : 3
    Points : 2
    Points
    2
    Par défaut
    j'ajoute le fichier original que je veux mettre en applet

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    import java.awt.* ;
    import java.awt.event.*;
     
    class Fenetre extends Frame {
    	protected Panel p,p1,p2,p3,p4;
    	protected TextArea texte;
    	protected Button bouton1 ;
    	protected CheckboxGroup cbg;
    	protected Checkbox chb1, chb2, chb3;
    	protected Choice c;
    	protected TextField tf1, tf2;
    	protected Delegue delegue;
    	protected Adaptateur adapt;
     
     
    	Fenetre() {
    		p=new Panel();
    		p.setLayout(new GridLayout(4,1));
     
    		p1=new Panel();
    		p1.setLayout(new FlowLayout());
    		p1.add(new Label("Type d'emprunt"));
    		cbg=new CheckboxGroup();
    		chb1=new Checkbox("immobilier", cbg, true);
    		p1.add(chb1);
    		chb2=new Checkbox("achat de véhicule", cbg, false);
    		p1.add(chb2);
    		chb3=new Checkbox("consommation", cbg, false);
    		p1.add(chb3);
    		p.add(p1);
     
    		p2=new Panel();
    		p2.setLayout(new FlowLayout());	
    			p2.add(new Label("Montant demandé"));
    			tf1=new TextField(10);
    			p2.add(tf1);
    			p2.add(new Label("Nombres d'années de remboursement "));
    			c=new Choice();
    				c.addItem("3");
    				c.addItem("4");
    				c.addItem("5");
    				c.addItem("6");
    				c.addItem("7");
    				c.addItem("8");	
    				c.addItem("9");
    				c.addItem("10");
    				c.addItem("11");
    				c.addItem("12");
    				c.addItem("13");
    				c.addItem("14");
    				c.addItem("15");
    				c.addItem("16");
    				c.addItem("17");
    				c.addItem("18");
    				c.addItem("19");
    				c.addItem("20");
    				c.addItem("21");
    				c.addItem("22");
    				c.addItem("23");
    				c.addItem("24");
    				c.addItem("25");
    				c.addItem("26");
    				c.addItem("27");
    				c.addItem("28");
    				c.addItem("29");
    				c.addItem("30");
    			p2.add(c);
    			p.add(p2);
     
    		p3=new Panel();
    		p3.setLayout(new FlowLayout());
    		p3.add(new Label("Revenu mensuel"));
    		tf2=new TextField(10);
    		p3.add(tf2);
    		p.add(p3);
     
    		p4=new Panel();
    		p4.setLayout(new FlowLayout());
    		bouton1=new Button("Valider");
    		p4.add(bouton1);
    		p.add(p4);
     
    		add("North", p);
     
    		texte=new TextArea();
    		add("South", texte);
     
     
    delegue=new Delegue(this);
    adapt=new Adaptateur(delegue);
     
    this.addWindowListener(adapt);
     
     
    		}
    	}
     
    class Delegue {
    	protected Fenetre fen;
    Delegue(Fenetre f){
    	fen=f;
    	}
    public void quitter() {
    	System.exit(0);
    	}
    }
    class Adaptateur implements WindowListener {
    protected Delegue delegue;
    Adaptateur(Delegue d) {
    delegue=d;
    	}
    public void windowOpened(WindowEvent e){}
    public void windowClosing(WindowEvent e) {
     delegue.quitter() ;
    	}
    public void windowClosed(WindowEvent e){}
    public void windowIconified(WindowEvent e){}
    public void windowDeiconified(WindowEvent e){}
    public void windowActivated(WindowEvent e){}
    public void windowDeactivated(WindowEvent e){}
     
    	}
     
     
    public class Emprunt2 {
    	public static void main (String args[]) {
    		Fenetre f=new Fenetre();
    		f.pack();
    		f.show();
    		}
    	}

  3. #3
    Membre chevronné
    Avatar de CheryBen
    Inscrit en
    Mai 2005
    Messages
    1 599
    Détails du profil
    Informations personnelles :
    Âge : 42

    Informations forums :
    Inscription : Mai 2005
    Messages : 1 599
    Points : 2 197
    Points
    2 197
    Par défaut
    Bonjour, tu déclares ta classe Adaptateur comme implémentant l'interface WindowListener, tu dois donc implémenter les méthodes de cette interface. (JAVADOC de WindowListener)

Discussions similaires

  1. Transformation en applet
    Par pendoRa dans le forum Applets
    Réponses: 2
    Dernier message: 19/03/2011, 14h31
  2. Réponses: 5
    Dernier message: 05/04/2007, 11h30
  3. Transformation d'une application en Applet
    Par Alex2065 dans le forum Applets
    Réponses: 2
    Dernier message: 07/02/2007, 15h23
  4. [XSLT] Applet et transformation XSLT
    Par Summer dans le forum Format d'échange (XML, JSON...)
    Réponses: 3
    Dernier message: 27/01/2006, 12h07
  5. Réponses: 3
    Dernier message: 05/06/2005, 02h52

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo