nashorn/src/jdk/nashorn/internal/runtime/GlobalObject.java
changeset 20933 89748612fd1d
parent 19884 1bacbaa1bfc7
child 23372 09707b3e5fb0
equal deleted inserted replaced
20932:323bdf36c328 20933:89748612fd1d
    36  */
    36  */
    37 
    37 
    38 public interface GlobalObject {
    38 public interface GlobalObject {
    39     /**
    39     /**
    40      * Is this global of the given Context?
    40      * Is this global of the given Context?
       
    41      * @param ctxt the context
    41      * @return true if this global belongs to the given Context
    42      * @return true if this global belongs to the given Context
    42      */
    43      */
    43     public boolean isOfContext(Context context);
    44     public boolean isOfContext(final Context ctxt);
    44 
    45 
    45     /**
    46     /**
    46      * Does this global belong to a strict Context?
    47      * Does this global belong to a strict Context?
    47      * @return true if this global belongs to a strict Context
    48      * @return true if this global belongs to a strict Context
    48      */
    49      */