< prev index next >

test/java/nio/file/WatchService/SensitivityModifier.java

Print this page




   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4313887
  26  * @summary Sanity test for Sun-specific sensitivity level watch event modifier

  27  * @library ..
  28  * @run main/timeout=240 SensitivityModifier
  29  * @key randomness
  30  */
  31 
  32 import java.nio.file.*;
  33 import static java.nio.file.StandardWatchEventKinds.*;
  34 import java.io.OutputStream;
  35 import java.io.IOException;
  36 import java.util.Random;
  37 import java.util.concurrent.TimeUnit;
  38 import com.sun.nio.file.SensitivityWatchEventModifier;
  39 
  40 public class SensitivityModifier {
  41 
  42     static final Random rand = new Random();
  43 
  44     static void register(Path[] dirs, WatchService watcher) throws IOException {
  45         SensitivityWatchEventModifier[] sensitivtives =
  46             SensitivityWatchEventModifier.values();




   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4313887
  26  * @summary Sanity test for Sun-specific sensitivity level watch event modifier
  27  * @modules java.base/com.sun.nio.file
  28  * @library ..
  29  * @run main/timeout=240 SensitivityModifier
  30  * @key randomness
  31  */
  32 
  33 import java.nio.file.*;
  34 import static java.nio.file.StandardWatchEventKinds.*;
  35 import java.io.OutputStream;
  36 import java.io.IOException;
  37 import java.util.Random;
  38 import java.util.concurrent.TimeUnit;
  39 import com.sun.nio.file.SensitivityWatchEventModifier;
  40 
  41 public class SensitivityModifier {
  42 
  43     static final Random rand = new Random();
  44 
  45     static void register(Path[] dirs, WatchService watcher) throws IOException {
  46         SensitivityWatchEventModifier[] sensitivtives =
  47             SensitivityWatchEventModifier.values();


< prev index next >