1 11 package org.eclipse.core.runtime; 12 13 import org.osgi.framework.Bundle; 14 15 34 public interface IBundleGroup { 35 36 43 public String getIdentifier(); 44 45 50 public String getName(); 51 52 60 public String getVersion(); 61 62 67 public String getDescription(); 68 69 74 public String getProviderName(); 75 76 81 public Bundle[] getBundles(); 82 83 90 public String getProperty(String key); 91 } 92 | Popular Tags |