Exemple #1
0
        public void AddAttribute(string id, string title, GexfAttributeType type, string defaultValue, IEnumerable <string> options)
        {
            GexfAttribute attribute = new GexfAttribute()
            {
                Id = id, Title = title, Type = type, Default = defaultValue, Options = options
            };

            _attributes.Add(attribute);
        }
Exemple #2
0
 public GexfAttributeValue(GexfAttribute attribute)
 {
     _attribute = attribute;
 }