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.
      protected static long serialVersionUID
    • 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

      • serialVersionUID

        🡇     🗕  🗗  🗖
        protected static final long serialVersionUID
        This fulfils the SerialVersion UID requirement for all classes that implement Java's interface java.io.Serializable. Using the Serializable Implementation offered by java is very easy, and can make saving program state when debugging a lot easier. It can also be used in place of more complicated systems like "hibernate" to store data as well.
        See Also:
        Constant Field Values
        Code:
        Exact Field Declaration Expression:
         protected static final long serialVersionUID = 1;
        
      • 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 .
      • 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.
    • Constructor Detail

      • BrowserEvent

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