Jindent - Java Source Code Formatter http://www.jindent.com
 



title
5.6.2.7.9 Scopes

Space before scopes

Space before scopes

Controls whether a white space is inserted before colons of scopes or not.


Insert a white space before:

void·NES_mapper20·::SNSS_fixup()·{      
···...                                  
···NES_6502·::Context·context;          
···...                                  
}                                       


Do not insert a white space before:

void·NES_mapper20::SNSS_fixup()·{       
···...                                  
···NES_6502::Context·context;           
···...                                  
}                                       



Space after scopes

Space after scopes

Controls whether a white space is inserted after colons of scopes or not.


Insert a white space after:

void·NES_mapper20::·SNSS_fixup()·{      
···...                                  
···NES_6502::·Context·context;          
···...                                  
}                                       


Do not insert a white space after:

void·NES_mapper20::SNSS_fixup()·{       
···...                                  
···NES_6502::Context·context;           
···...                                  
}