Interface ICefDefs


public interface ICefDefs
Static definitions used by the CEF utilities, so both on the Java and Javascript sides. IF THESE VALUES ARE MODIFIED, BE SURE TO ALSO CHANGE THE CORRESPONDING CONSTANT VALUES IN THE JAVASCRIPT CODE!!
Author:
swong
  • Field Summary

    Fields
    Modifier and Type Field Description
    static java.lang.String CALLBACK_FN_NAME
    The name of the Javascript function to route callback functions
    static java.lang.String CALLBACK_FN_NAME_CANCEL
    The name of the Javascript function to cancel callback functions
    static java.lang.String CEF_ENTITY_TYPE_CONSUMER
    The value of the field in an CEF object structure that identifies its type as a Consumer.
    static java.lang.String CEF_ENTITY_TYPE_FIELD_NAME
    The name of the field in an CEF object structure that identifies its type.
    static java.lang.String CEF_ENTITY_TYPE_GM_ICON_SEQUENCE
    The value of the field in an CEF object structure that identifies its type as a Google Maps google.maps.IconSequence.
    static java.lang.String CEF_ENTITY_TYPE_GM_SYMBOL
    The value of the field in an CEF object structure that identifies its type as a Google Maps google.maps.Symbol.
    static java.lang.String CEF_ENTITY_TYPE_OBJECT
    The value of the field in an CEF object structure that identifies its type as an ICefObject.
    static java.lang.String CEF_ENTITY_TYPE_RUNNABLE
    The value of the field in an CEF object structure that identifies its type as a Runnable.
    static java.lang.String CEF_ENTITY_VALUE_FIELD_NAME
    The name of the field in an CEF object structure that identifies its value.
    static java.lang.String OBJ_CREATE_FN_NAME
    The name of the Javascript function to route object creation return functions
    static java.lang.String OBJ_CREATE_FN_NAME_CANCEL
    The name of the Javascript function to cancel object creation return functions
    static java.lang.String RETURN_VALUE_FN_NAME
    The name of the Javascript function to route return values from function calls
    static java.lang.String RETURN_VALUE_FN_NAME_CANCEL
    The name of the Javascript function to cancel return values from function calls
  • Field Details

    • CALLBACK_FN_NAME

      static final java.lang.String CALLBACK_FN_NAME
      The name of the Javascript function to route callback functions
      See Also:
      Constant Field Values
    • CALLBACK_FN_NAME_CANCEL

      static final java.lang.String CALLBACK_FN_NAME_CANCEL
      The name of the Javascript function to cancel callback functions
      See Also:
      Constant Field Values
    • OBJ_CREATE_FN_NAME

      static final java.lang.String OBJ_CREATE_FN_NAME
      The name of the Javascript function to route object creation return functions
      See Also:
      Constant Field Values
    • OBJ_CREATE_FN_NAME_CANCEL

      static final java.lang.String OBJ_CREATE_FN_NAME_CANCEL
      The name of the Javascript function to cancel object creation return functions
      See Also:
      Constant Field Values
    • RETURN_VALUE_FN_NAME

      static final java.lang.String RETURN_VALUE_FN_NAME
      The name of the Javascript function to route return values from function calls
      See Also:
      Constant Field Values
    • RETURN_VALUE_FN_NAME_CANCEL

      static final java.lang.String RETURN_VALUE_FN_NAME_CANCEL
      The name of the Javascript function to cancel return values from function calls
      See Also:
      Constant Field Values
    • CEF_ENTITY_TYPE_FIELD_NAME

      static final java.lang.String CEF_ENTITY_TYPE_FIELD_NAME
      The name of the field in an CEF object structure that identifies its type.
      See Also:
      Constant Field Values
    • CEF_ENTITY_VALUE_FIELD_NAME

      static final java.lang.String CEF_ENTITY_VALUE_FIELD_NAME
      The name of the field in an CEF object structure that identifies its value.
      See Also:
      Constant Field Values
    • CEF_ENTITY_TYPE_OBJECT

      static final java.lang.String CEF_ENTITY_TYPE_OBJECT
      The value of the field in an CEF object structure that identifies its type as an ICefObject.
      See Also:
      Constant Field Values
    • CEF_ENTITY_TYPE_RUNNABLE

      static final java.lang.String CEF_ENTITY_TYPE_RUNNABLE
      The value of the field in an CEF object structure that identifies its type as a Runnable.
      See Also:
      Constant Field Values
    • CEF_ENTITY_TYPE_CONSUMER

      static final java.lang.String CEF_ENTITY_TYPE_CONSUMER
      The value of the field in an CEF object structure that identifies its type as a Consumer.
      See Also:
      Constant Field Values
    • CEF_ENTITY_TYPE_GM_ICON_SEQUENCE

      static final java.lang.String CEF_ENTITY_TYPE_GM_ICON_SEQUENCE
      The value of the field in an CEF object structure that identifies its type as a Google Maps google.maps.IconSequence. The value of the CEF_ENTITY_VALUE_FIELD_NAME field is the IconSquence options object to be used to instantiate the IconSequence.
      See Also:
      Constant Field Values
    • CEF_ENTITY_TYPE_GM_SYMBOL

      static final java.lang.String CEF_ENTITY_TYPE_GM_SYMBOL
      The value of the field in an CEF object structure that identifies its type as a Google Maps google.maps.Symbol. The value of the CEF_ENTITY_VALUE_FIELD_NAME field is the Symbol options object to be used to instantiate the Symbol.
      See Also:
      Constant Field Values