KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > wsh > FileAttribute


1 // GENERATED. DO NOT MODIFY
2
package wsh;
3
4 import com4j.*;
5
6 public enum FileAttribute implements ComEnum {
7     Normal(0),
8     ReadOnly(1),
9     Hidden(2),
10     System(4),
11     Volume(8),
12     Directory(16),
13     Archive(32),
14     Alias(1024),
15     Compressed(2048),
16     ;
17
18     private final int value;
19     FileAttribute(int value) { this.value=value; }
20     public int comEnumValue() { return value; }
21 }
22
Popular Tags