1 package org.tanukisoftware.wrapper.event; 2 3 27 28 51 public class WrapperServiceControlEvent 52 extends WrapperServiceEvent 53 { 54 55 private int m_serviceControlCode; 56 57 60 65 public WrapperServiceControlEvent( int serviceControlCode ) 66 { 67 m_serviceControlCode = serviceControlCode; 68 } 69 70 73 78 public int getServiceControlCode() 79 { 80 return m_serviceControlCode; 81 } 82 83 88 public String toString() 89 { 90 return "WrapperServiceControlEvent[serviceControlCode=" + getServiceControlCode() + "]"; 91 } 92 } 93 | Popular Tags |