Coverage Report - org.openpermis.editor.policy.Main
 
Classes in this File Line Coverage Branch Coverage Complexity
Main
0%
0/6
N/A
1
 
 1  
 /*
 2  
  * Copyright (c) 2009, Swiss Federal Department of Defence Civil Protection and Sport
 3  
  *                     (http://www.vbs.admin.ch)
 4  
  * Copyright (c) 2009, Ergon Informatik AG (http://www.ergon.ch)
 5  
  * All rights reserved.
 6  
  *
 7  
  * Licensed under the Open Permis License which accompanies this distribution,
 8  
  * and is available at http://www.openpermis.org/BSDlicenceKent.txt
 9  
  */
 10  
 package org.openpermis.editor.policy;
 11  
 
 12  
 import org.openpermis.editor.policy.gui.IconRegistryConverter;
 13  
 
 14  
 
 15  
 /**
 16  
  * Entry point of the policy editor application.
 17  
  * @since 0.1.0
 18  
  */
 19  
 public final class Main {
 20  
 
 21  
         //---- Static
 22  
         
 23  
         /**
 24  
          * Starts the policy editor.
 25  
          * @param args application arguments, passed on.
 26  
          * @since 0.1.0
 27  
          */
 28  
         public static void main (String[] args) {
 29  0
                 MacAdapter.initialize("Policy Editor");
 30  0
                 IconRegistryConverter.initialize();
 31  0
                 org.jdesktop.application.Application.launch(Application.class, args);
 32  0
         }
 33  
         
 34  
         //---- Constructors
 35  
         
 36  
         /**
 37  
          * Objects of this class cannot be instantiated.
 38  
          * @since 0.1.0
 39  
          */
 40  
         private Main () {
 41  0
                 super();
 42  0
         }
 43  
 
 44  
 }