21 namespace Lucene.Net.Analysis.Tokenattributes
30 private int flags = 0;
41 public virtual int Flags
44 set { this.flags = value; }
47 public override void Clear()
52 public override bool Equals(System.Object other)
61 return ((FlagsAttribute) other).flags == flags;
67 public override int GetHashCode()
78 override public System.Object Clone()
81 impl.flags = this.flags;