Example #1
0
 public SQLElement(SQLRepository repository, String sqlStringOfElement)
 {
     this.sqlStringOfElement = sqlStringOfElement;
     this.repository         = repository as SQLRepository;
 }
Example #2
0
 public SQLMethod(String xmlMethodEntry, SQLRepository repository)
 {
     this.repository     = repository as SQLRepository;
     this.xmlMethodEntry = xmlMethodEntry;
 }
Example #3
0
 public SQLAttribute(String xmlAttributeEntry, SQLRepository repository)
 {
     this.repository        = repository as SQLRepository;
     this.xmlAttributeEntry = xmlAttributeEntry;
 }
Example #4
0
 public SQLParameter(SQLRepository repository, String xmlParameterString)
 {
     this.repository         = repository;
     this.xmlParameterString = xmlParameterString;
 }
Example #5
0
 public SQLConnector(SQLRepository repository, String sqlString)
 {
     this.repository = repository;
     this.sqlString  = sqlString;
 }
Example #6
0
 public SQLTemplate(SQLRepository repository, String xmlString)
 {
     this.repository = repository;
     this.xmlString  = xmlString;
 }
Example #7
0
 public SQLPackage(SQLRepository repository, String xmlPackageString)
 {
     this.xmlPackageString = xmlPackageString;
     this.repository       = repository;
 }
Example #8
0
 public SQLConnectorEnd(SQLRepository repository, String xmlConnectorString, String clientOrTarget)
 {
     this.repository         = repository;
     this.xmlConnectorString = xmlConnectorString;
     this.clientOrTarget     = clientOrTarget;
 }
Example #9
0
 public SQLDiagram(SQLRepository repository, String xmlDiagramString)
 {
     this.repository       = repository;
     this.xmlDiagramString = xmlDiagramString;
 }
 public SQLTaggedValue(SQLRepository repository, String xmlTaggedValue)
 {
     this.repository     = repository;
     this.xmlTaggedValue = xmlTaggedValue;
 }