psdi.webclient.beans.bim.viewer

Class ModelAddBean

  • All Implemented Interfaces:
    java.util.EventListener, javax.servlet.http.HttpSessionBindingListener, DataBeanListener


    public class ModelAddBean
    extends DataBean
    • Constructor Detail

      • ModelAddBean

        public ModelAddBean()
    • Method Detail

      • initialize

        public void initialize()
                        throws MXException,
                               java.rmi.RemoteException
        Description copied from class: DataBean
        Typically called after the DataBean gets a new MboSetRemote On the MboSetRemote it sets the app, the app defaults, user defaults If the remote is an instanceof NonPersistentMboSetRemote then setup is called on it and sets the current row to 0. If the DataBean isn't bound to a table then initialize fetches the first mbo (sets the current row to 0). If this method is overridden under most case you will want to call super.initalize at the end of the the new initialize method.
        Overrides:
        initialize in class DataBean
        Throws:
        MXException
        java.rmi.RemoteException
      • execute

        public int execute()
                    throws MXException,
                           java.rmi.RemoteException
        Description copied from class: DataBean
        This method is meant to be overrided by dialog beans but by default if the bean's remote is a NonPersistentMboSetRemote, then execute is called on the bean's remote and if the DataBean has a parent then execute is called on the bean's parent bean. If the remote is not a NonPersistentMboSetRemote then if the bean has a parentbean and a parent relationship then execute is called on the parent bean, else save is called on the bean's remote If you do not want to save the parent of the bean then override execute and just call save.
        Overrides:
        execute in class DataBean
        Throws:
        MXException
        java.rmi.RemoteException
      • loadModelFile

        public int loadModelFile()
                          throws MXException,
                                 java.rmi.RemoteException
        Handle the upload button on the dialog
        Returns:
        Throws:
        MXException
        java.rmi.RemoteException
      • setCurrentRow

        public boolean setCurrentRow(int nRow)
                              throws MXException,
                                     java.rmi.RemoteException
        Description copied from class: DataBean
        Changes the current row position. Returns true, if the row exists in the result set otherwise false.
        Overrides:
        setCurrentRow in class DataBean
        Throws:
        MXException
        java.rmi.RemoteException
      • dataChangedEvent

        public void dataChangedEvent(DataBean speaker)
        Description copied from class: DataBean
        event called by the "parent" DataBean which tells this DataBean that it's mbo data (the parent's) has changed or been refreshed. The fireDataChangedEvent is called thus setting the invalidData for all the "children" DataBeans
        Specified by:
        dataChangedEvent in interface DataBeanListener
        Overrides:
        dataChangedEvent in class DataBean