mirror of
https://github.com/1C-Company/v8-code-style.git
synced 2025-02-13 16:32:04 +02:00
32 lines
482 B
Plaintext
32 lines
482 B
Plaintext
|
|
&AtClient
|
|
Procedure Noncompliant()
|
|
|
|
Notify = new NotifyDescription("NoncompliantNotify", ThisObject);
|
|
|
|
Notify = new NotifyDescription("NoncompliantNotify2", ThisObject);
|
|
|
|
EndProcedure
|
|
|
|
&AtClient
|
|
Procedure Compliant()
|
|
|
|
Notify = new NotifyDescription("CompliantNotify", ThisObject);
|
|
|
|
EndProcedure
|
|
|
|
&AtClient
|
|
Procedure CompliantNotify() Export
|
|
|
|
EndProcedure
|
|
|
|
&AtClient
|
|
Procedure NoncompliantNotify()
|
|
|
|
EndProcedure
|
|
|
|
&AtServer
|
|
Procedure NoncompliantNotify2() Export
|
|
|
|
EndProcedure
|