src/share/classes/org/omg/CORBA/CTX_RESTRICT_SCOPE.java

Print this page
rev 597 : 8047722: @since tag cleanup in corba
Reviewed-by:


  23  * questions.
  24  */
  25 
  26 package org.omg.CORBA;
  27 
  28 /**
  29  * A flag that can be used as the second parameter to the method
  30  * <code>Context.get_values</code> to restrict the search scope.
  31  * When this flag is used, it restricts the search for
  32  * context values to this particular <code>Context</code> object
  33  * or to the scope specified in the first parameter to
  34  * <code>Context.get_values</code>.
  35  * <P>
  36  * Usage:
  37  * <PRE>
  38  *     NVList props = myContext.get_values("_USER",
  39  *                     CTX_RESTRICT_SCOPE.value, "id*");
  40  * </PRE>
  41  *
  42  * @see org.omg.CORBA.Context#get_values(String, int, String)
  43  * @since   JDK1.2
  44  */
  45 public interface CTX_RESTRICT_SCOPE {
  46 
  47 /**
  48  * The field containing the <code>int</code> value of a
  49  * <code>CTX_RESTRICT_SCOPE</code> flag.
  50  */
  51   int value = 15;
  52 }


  23  * questions.
  24  */
  25 
  26 package org.omg.CORBA;
  27 
  28 /**
  29  * A flag that can be used as the second parameter to the method
  30  * <code>Context.get_values</code> to restrict the search scope.
  31  * When this flag is used, it restricts the search for
  32  * context values to this particular <code>Context</code> object
  33  * or to the scope specified in the first parameter to
  34  * <code>Context.get_values</code>.
  35  * <P>
  36  * Usage:
  37  * <PRE>
  38  *     NVList props = myContext.get_values("_USER",
  39  *                     CTX_RESTRICT_SCOPE.value, "id*");
  40  * </PRE>
  41  *
  42  * @see org.omg.CORBA.Context#get_values(String, int, String)
  43  * @since   1.2
  44  */
  45 public interface CTX_RESTRICT_SCOPE {
  46 
  47 /**
  48  * The field containing the <code>int</code> value of a
  49  * <code>CTX_RESTRICT_SCOPE</code> flag.
  50  */
  51   int value = 15;
  52 }