Exemplo n.º 1
0
 public LabelDictionary()
 {
     _labels         = new ArrayList();
     _preferredIndex = 0;
     _enable         = null;
 }
Exemplo n.º 2
0
 public LabelDictionary(ArrayList labels)
 {
     _labels         = (ArrayList)labels.Clone();
     _preferredIndex = 0;
     _enable         = null;
 }
Exemplo n.º 3
0
 public LabelDictionary(EnableConstraint enable)
 {
     _labels         = new ArrayList();
     _preferredIndex = 0;
     _enable         = enable;
 }
Exemplo n.º 4
0
        /*
         * Constructors
         */

        public LabelDictionary(ArrayList labels, EnableConstraint enable)
        {
            _labels         = (ArrayList)labels.Clone();
            _preferredIndex = 0;
            _enable         = enable;
        }