1 18 19 package org.osgi.framework; 20 21 51 52 public interface ServiceReference extends Comparable { 53 71 public Object getProperty(String key); 72 73 93 public String [] getPropertyKeys(); 94 95 109 public Bundle getBundle(); 110 111 123 public Bundle[] getUsingBundles(); 124 125 152 public boolean isAssignableTo(Bundle bundle, String className); 153 154 179 public int compareTo(Object reference); 180 } 181 | Popular Tags |