Method Modifiers Supported by X++
| 
    
Method
   Modifiers Supported by X++ 
 | 
  |
| 
    
Modifier 
 | 
   
    
Description 
 | 
  
| 
   
static 
 | 
  
   
Static methods are accessed via class declarations. Fields can’t
  be accessed from within a static method. 
 | 
 
| 
   
final 
 | 
  
   
Final methods can’t be overridden by methods with the same name
  in derived classes. 
 | 
 
| 
   
abstract 
 | 
  
   
Abstract methods have no implementation. Derived classes must
  provide definitions for abstract methods. 
 | 
 
| 
   
server 
 | 
  
   
Server methods can execute only on an Application Object Server.
  The server modifier is allowed only on static methods. 
 | 
 
| 
   
client 
 | 
  
   
Client methods can execute only on a MorphX client. The clientmodifiers
  are allowed only on static methods. 
 | 
 
| 
   
display 
 | 
  
   
Display methods are invoked each time a form or report is
  redrawn. The display modifier is allowed only on table,
  form, form data, report, and report design methods. 
 | 
 
| 
   
edit 
 | 
  
   
The edit method is invoked each time a form is
  redrawn or a user provides input through a form control. The edit modifier
  is allowed only on table, form, and form data source methods. 
 | 
 
For More Details on the same check below link