Class BrowserEvent

    • Field Summary

      Fields 
      Modifier and Type Field Description
      String domain
      It was decided by somebody other than I that there are to be two API's of the browser Remote-Debug-Port interface.
      String name
      The event has a name, and this name happens to be the exact same name as the event-class itself.
      int numFields
      This is the number of fields in this class.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected BrowserEvent​(String domain, String name, int numFields)
      Constructor for this abstract-class
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • domain

        🡇    
        public final java.lang.String domain
        It was decided by somebody other than I that there are to be two API's of the browser Remote-Debug-Port interface. The two API's were decided to be the JavaScript API, and the Browser API. These two do not have a lot of distinction or meaning.

        Each API has several categories of methods, and these are called .
        Code:
        Exact Field Declaration Expression:
         public final String domain;
        
      • name

        🡅  🡇    
        public final java.lang.String name
        The event has a name, and this name happens to be the exact same name as the event-class itself.
        Code:
        Exact Field Declaration Expression:
         public final String name;
        
      • numFields

        🡅  🡇    
        public final int numFields
        This is the number of fields in this class. It is like a reflection-field.
        Code:
        Exact Field Declaration Expression:
         public final int numFields;
        
    • Constructor Detail

      • BrowserEvent

        🡅    
        protected BrowserEvent​(java.lang.String domain,
                               java.lang.String name,
                               int numFields)
        Constructor for this abstract-class