Advertisement
Guest User

Untitled

a guest
Sep 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1. public class BoletimOcorrencia {
  2.  
  3.     private static BoletimOcorrencia boletimOcorrencia = null;
  4.  
  5.     private BoletimOcorrencia(){
  6.        
  7.     }
  8.    
  9.     public static BoletimOcorrencia BoletimOcorrencia() {
  10.         if (boletimOcorrencia == null) {
  11.             boletimOcorrencia = new BoletimOcorrencia();
  12.         }
  13.         return boletimOcorrencia;
  14.     }
  15.    
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement