Package org.analyse.merise.gui.table

Examples of org.analyse.merise.gui.table.DictionnaireTable.addObserver()


      public void mousePressed(MouseEvent me){

        if (me.getButton() == MouseEvent.BUTTON1) {   
              if (typeAction.equals(Constantes.ADD_ENT)) {
                  DictionnaireTable data = mcdComponent.getData();         
                  data.addObserver(mcdComponent.addEntite(me.getX(), me.getY()));
                 
              } else if (typeAction.equals(Constantes.ADD_ASS)) {
                  DictionnaireTable data = mcdComponent.getData();
                  data.addObserver(mcdComponent.addAssociation(me.getX(), me.getY()));
              }
View Full Code Here


                  DictionnaireTable data = mcdComponent.getData();         
                  data.addObserver(mcdComponent.addEntite(me.getX(), me.getY()));
                 
              } else if (typeAction.equals(Constantes.ADD_ASS)) {
                  DictionnaireTable data = mcdComponent.getData();
                  data.addObserver(mcdComponent.addAssociation(me.getX(), me.getY()));
              }
        }
        else{
          /* on repasse en mode curseur*/
              typeAction = Constantes.CHANGE_CURSEUR;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.