1 26 27 package org.objectweb.util.monolog.provider.lib.topics; 28 29 import org.objectweb.ccm.trace.OpenCCM_Topics; 30 31 32 42 public class BundleTopics { 43 44 49 static public String getPreTopic(Object ref) { 50 String res = null; 51 String objectName = "" + ref; 52 objectName = objectName.replace(' ','_'); 53 54 return OpenCCM_Topics.getPreTopic(objectName); 55 } 56 } 57 | Popular Tags |