File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -926,7 +926,8 @@ procedure TViewMain.ProcessaGetSetImplementacao(AFieldNameLB: string; AFieldTipo
926926
927927procedure TViewMain.ProcessarContratoInterface (AFieldNameLB: string; AFieldTipo: string);
928928begin
929- FStrAcessoDeclaracoes.Add(' function ' + AFieldNameLB +' (Value: ' + AFieldTipo +' ): i' + FUnitNome + ' ;' );
929+ FStrAcessoDeclaracoes.Add(' function ' + AFieldNameLB + ' :' + AFieldTipo + ' ; overload;' );
930+ FStrAcessoDeclaracoes.Add(' function ' + AFieldNameLB +' (Value: ' + AFieldTipo +' ): i' + FUnitNome +' ; overload;' );
930931end ;
931932
932933procedure TViewMain.ProcessaFluentInterface (AFieldNameLB: string; AFieldTipo: string);
@@ -949,9 +950,14 @@ procedure TViewMain.ProcessaFluentInterface(AFieldNameLB: string; AFieldTipo: st
949950
950951procedure TViewMain.ProcessaOrientacaoInterface (AFieldNameLB: string; AFieldTipo: string);
951952begin
953+ FStrAcessoDeclaracoes.Add(' function ' + AFieldNameLB +' : ' + AFieldTipo +' ; overload;' );
954+ FStrAcessoDeclaracoes.Add(' function ' + AFieldNameLB +' (Value: ' + AFieldTipo +' ): i' + FUnitNome +' ; overload;' );
952955
953- FStrAcessoDeclaracoes.Add(' function ' + AFieldNameLB +' (Value: ' + AFieldTipo +' ): i' + FUnitNome +' ;' );
954-
956+ FStrAcessoImpl.Add(' function ' + FClasseNome + ' .' + AFieldNameLB +' : ' + AFieldTipo +' ;' );
957+ FStrAcessoImpl.Add(' begin' );
958+ FStrAcessoImpl.Add(' Result := F' + AFieldNameLB +' ;' );
959+ FStrAcessoImpl.Add(' end;' );
960+ FStrAcessoImpl.Add(' ' );
955961 FStrAcessoImpl.Add(' function ' + FClasseNome +' .' + AFieldNameLB +' (Value: ' + AFieldTipo +' ): i' + FUnitNome +' ;' );
956962 FStrAcessoImpl.Add(' begin' );
957963 FStrAcessoImpl.Add(' Result := Self;' );
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ ckGravarArquivosPasta=1
1212ckAbrirPastaAposGravar =1
1313ckAddCabecalho =1
1414ckLimparMemoACadaUnit =1
15- edtNomeEntities =Pessoa
15+ edtNomeEntities =Notificacao
1616rdGroupFormaAcessoEntities =4
1717ckAddComentarioNomeTabela =0
1818ckAddComentarioNomeField =0
You can’t perform that action at this time.
0 commit comments