Skip to content
Snippets Groups Projects
Select Git revision
  • main default protected
  • rosification
  • refactoring
  • pp
  • mpc
  • realtimelogplotter
  • alv
  • gitlab_ci_podman
  • restructuring
  • viz_fix
10 results

calib_board_hacks.py

Blame
  • UpdateListener.java NaN GiB
    package gui;
    
    /*
     * NOTE: TWO INTERFACES ARE NEEDED SUCH THAT THE UI ISN'T UPDATED WHEN MARKED.
     */
    public interface UpdateListener {
    
        /*
         * The function to be performed when the observable class is updated.
         * Object obj is the object calling the update; 
         */
        public void update(Object Obj);
    
        // or null
        public default void update() { this.update(null); }
    }