public SQLElement(SQLRepository repository, String sqlStringOfElement) { this.sqlStringOfElement = sqlStringOfElement; this.repository = repository as SQLRepository; }
public SQLMethod(String xmlMethodEntry, SQLRepository repository) { this.repository = repository as SQLRepository; this.xmlMethodEntry = xmlMethodEntry; }
public SQLAttribute(String xmlAttributeEntry, SQLRepository repository) { this.repository = repository as SQLRepository; this.xmlAttributeEntry = xmlAttributeEntry; }
public SQLParameter(SQLRepository repository, String xmlParameterString) { this.repository = repository; this.xmlParameterString = xmlParameterString; }
public SQLConnector(SQLRepository repository, String sqlString) { this.repository = repository; this.sqlString = sqlString; }
public SQLTemplate(SQLRepository repository, String xmlString) { this.repository = repository; this.xmlString = xmlString; }
public SQLPackage(SQLRepository repository, String xmlPackageString) { this.xmlPackageString = xmlPackageString; this.repository = repository; }
public SQLConnectorEnd(SQLRepository repository, String xmlConnectorString, String clientOrTarget) { this.repository = repository; this.xmlConnectorString = xmlConnectorString; this.clientOrTarget = clientOrTarget; }
public SQLDiagram(SQLRepository repository, String xmlDiagramString) { this.repository = repository; this.xmlDiagramString = xmlDiagramString; }
public SQLTaggedValue(SQLRepository repository, String xmlTaggedValue) { this.repository = repository; this.xmlTaggedValue = xmlTaggedValue; }