1 21 22 package org.opensubsystems.core.application; 23 24 32 public class SeparatorModule extends ThickClientModuleImpl 33 { 34 36 39 public static final String SEPARATOR = "SEPARATOR"; 40 41 43 46 public String getName() 47 { 48 return SEPARATOR; 49 } 50 51 54 public boolean activate( 55 boolean bReactivate 56 ) 57 { 58 assert false : "This method shouldn't be ever invoked."; 59 return false; 60 } 61 62 65 public void pasivate( 66 ) 67 { 68 assert false : "This method shouldn't be ever invoked."; 69 } 70 } 71 | Popular Tags |