< prev index next >

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

Print this page




   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  */
  30 
  31 import java.nio.file.*;
  32 import static java.nio.file.StandardWatchEventKinds.*;
  33 import java.io.OutputStream;
  34 import java.io.IOException;
  35 import java.util.Random;
  36 import java.util.concurrent.TimeUnit;
  37 import com.sun.nio.file.SensitivityWatchEventModifier;
  38 
  39 public class SensitivityModifier {
  40 
  41     static final Random rand = new Random();
  42 
  43     static void register(Path[] dirs, WatchService watcher) throws IOException {
  44         SensitivityWatchEventModifier[] sensitivtives =
  45             SensitivityWatchEventModifier.values();
  46         for (int i=0; i<dirs.length; i++) {
  47             SensitivityWatchEventModifier sensivity =
  48                 sensitivtives[ rand.nextInt(sensitivtives.length) ];




   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();
  47         for (int i=0; i<dirs.length; i++) {
  48             SensitivityWatchEventModifier sensivity =
  49                 sensitivtives[ rand.nextInt(sensitivtives.length) ];


< prev index next >