public FieldGenerator AddAttribute(AttributeGenerator attributeGenerator) { attributes.Add(attributeGenerator); return(this); }
public StructGenerator AddAttribute(AttributeGenerator generator) { attributes.Add(generator); return(this); }
public PropertyGenerator AddAttribute(AttributeGenerator attributeGenerator) { attributes.Add(attributeGenerator); return(this); }
/// <summary> /// Add an attribute above this class. /// </summary> public ClassGenerator AddAttribute(AttributeGenerator generator) { attributes.Add(generator); return(this); }
public MethodGenerator AddAttribute(AttributeGenerator generator) { attributes.Add(generator); return(this); }
public InterfaceGenerator AddAttribute(AttributeGenerator generator) { attributes.Add(generator); return(this); }