/*This file has to be considered the base for every plug in development for MySQLConnectus Here there is a list of the foundamental objectes that can be accessed by a plug in. For further information see API documentation*/ //============================================ /*currentMainFrame ----------------------- This object is the reference for the whole application and the main window*/ //============================================ /*currentMainFrame.frameDesktop -------------------------------------- This variable is the space of the application where windows are shown*/ //EXAMPLE /*JInternalFrame jif= new JInternalFrame("Hello world!!"); jif.setSize(200,200); currentMainFrame.frameDesktop.add(jif); jif.setClosable(true); jif.setVisible(true);*/ //============================================= /*currentMainFrame.currentAccess --------------------------------------- This variable is the current access to the DBMS for the available methos see api doc*/ //EXAMPLE /* import dbconnectivity.*; currentMainFrame.currentAccess = new DatabaseSource(DatabaseSource.MYSQL,currentMainFrame,currentMainFrame.Messages); //Customize USER_NAME,PASSWORD,DB_NAME currentMainFrame.currentAccess.access("USER_NAME","PASSWORD","DB_NAME"); */ //============================================ /* currentMainFrame.currentLog ------------------------------------ This is the currentLog window*/ //EXAMPLE //currentMainFrame.currentLog.addText("Hello world!!"); //============================================ /* currentMainFrame.currentTree ------------------------------------- This is the current dbms tree (extends a JInternalFrame)*/ //EXAMPLE //currentMainFrame.currentTree.setVisible(false); //currentMainFrame.currentTree.setVisible(true); //currentMainFrame.currentTree.setClosable(false); //currentMainFrame.currentTree.setClosable(true);