CIB jrec technical documentation (EN)

6. Integration of CIB jrec in Java

If the Jrec is integrated into a Java application that has its own menu, the JRec menu must be deactivated explicitly. For this purpose the following property must be set for the Jrec instance before the Jrec instance is started:

      // disable jrec menu bar – must be done 
      // if custom application uses its own menu bar
 m_cibRec.setProperty(ICibApplication.PROPERTY_MENU_ENABLED,
            Boolean.FALSE);
 
      // set other Properties
      //...
     
      // jrec start and load
      m_cibRec.start();
      m_cibRec.load();

 

See also the sample code for integration into a Java Swing application.