예제 #1
0
        private TestAttrib CreateAttribute(string name, AttributeType type, IEnumerable <object> values)
        {
            TestAttrib attribute = new TestAttrib(name, type, true);

            if (values != null)
            {
                attribute.SetValues(values);
            }

            return(attribute);
        }
예제 #2
0
        private TestAttrib CreateAttribute(string name, AttributeType type, bool isMultivalued, object value)
        {
            TestAttrib attribute = new TestAttrib(name, type, false);

            if (value != null)
            {
                attribute.SetValue(value);
            }

            return(attribute);
        }
예제 #3
0
파일: TestMVEntry.cs 프로젝트: sean-m/umare
 public void Add(TestAttrib attribute)
 {
     this.attributes.Add(attribute.Name, attribute);
 }