1 11 package org.eclipse.core.runtime; 12 13 import org.osgi.framework.Bundle; 14 15 36 public interface IProduct { 37 43 public String getApplication(); 44 45 51 public String getName(); 52 53 58 public String getDescription(); 59 60 64 public String getId(); 65 66 73 public String getProperty(String key); 74 75 82 public Bundle getDefiningBundle(); 83 } 84 | Popular Tags |