1 24 package com.scalagent.kjoram.comm; 25 26 30 public abstract class AbstractNotification 31 { 32 42 private int clientContext = -1; 43 44 45 50 public AbstractNotification(int clientContext) 51 { 52 this.clientContext = clientContext; 53 } 54 55 58 public AbstractNotification() 59 {} 60 61 62 63 public int getClientContext() 64 { 65 return clientContext; 66 } 67 } 68 | Popular Tags |