public bool isPropertyNameUsed(string propName) { return(existingPropertyNames.exists(propName)); }
public bool isEventNameUsed(string eventName) { return(existingEventNames.exists(eventName)); }
public bool isMethodNameUsed(string methodName) { return(existingMethodNames.exists(methodName)); }