From: <had...@us...> - 2008-08-11 07:25:30
|
Revision: 3752 http://fudaa.svn.sourceforge.net/fudaa/?rev=3752&view=rev Author: hadouxad Date: 2008-08-11 07:25:37 +0000 (Mon, 11 Aug 2008) Log Message: ----------- implementation de la fonction de duplication pour le graphe, les feleches et fleches double. probleme pour la vue calque Modified Paths: -------------- branches/Prepro-0.92-SNAPSHOT/ebli/src/org/fudaa/ebli/visuallibrary/calque/EbliWidgetCreatorVueCalque.java branches/Prepro-0.92-SNAPSHOT/ebli/src/org/fudaa/ebli/visuallibrary/graphe/EbliWidgetCreatorGraphe.java Modified: branches/Prepro-0.92-SNAPSHOT/ebli/src/org/fudaa/ebli/visuallibrary/calque/EbliWidgetCreatorVueCalque.java =================================================================== --- branches/Prepro-0.92-SNAPSHOT/ebli/src/org/fudaa/ebli/visuallibrary/calque/EbliWidgetCreatorVueCalque.java 2008-08-11 07:24:44 UTC (rev 3751) +++ branches/Prepro-0.92-SNAPSHOT/ebli/src/org/fudaa/ebli/visuallibrary/calque/EbliWidgetCreatorVueCalque.java 2008-08-11 07:25:37 UTC (rev 3752) @@ -10,8 +10,16 @@ public class EbliWidgetCreatorVueCalque implements EbliWidgetCreator { ZEbliCalquesPanel calque; - EbliWidgetVueCalque res; + public ZEbliCalquesPanel getCalque() { + return calque; +} +public void setCalque(ZEbliCalquesPanel calque) { + this.calque = calque; +} + +EbliWidgetVueCalque res; + public EbliWidgetCreatorVueCalque(ZEbliCalquesPanel calque) { super(); this.calque = calque; Modified: branches/Prepro-0.92-SNAPSHOT/ebli/src/org/fudaa/ebli/visuallibrary/graphe/EbliWidgetCreatorGraphe.java =================================================================== --- branches/Prepro-0.92-SNAPSHOT/ebli/src/org/fudaa/ebli/visuallibrary/graphe/EbliWidgetCreatorGraphe.java 2008-08-11 07:24:44 UTC (rev 3751) +++ branches/Prepro-0.92-SNAPSHOT/ebli/src/org/fudaa/ebli/visuallibrary/graphe/EbliWidgetCreatorGraphe.java 2008-08-11 07:25:37 UTC (rev 3752) @@ -11,21 +11,29 @@ */ public class EbliWidgetCreatorGraphe implements EbliWidgetCreator { - EGGraphe g; + EGGraphe graphe; + public EGGraphe getGraphe() { + return graphe; + } + + public void setGraphe(EGGraphe graphe) { + this.graphe = graphe; + } + EbliWidgetGraphe res; public EbliWidgetCreatorGraphe(EGGraphe g) { super(); - this.g = g; + this.graphe = g; } public EbliWidget create(EbliScene _scene) { // TODO Auto-generated method stub // creation de la widget correspondante - res= new EbliWidgetGraphe(_scene, null, g); + res= new EbliWidgetGraphe(_scene, null, graphe); // ajout des listener d ecoute du graphe - g.getModel().addModelListener( + graphe.getModel().addModelListener( new EbliWidgetGrapheController(res)); return res; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |