1 11 package org.eclipse.update.internal.core; 12 13 import org.eclipse.core.runtime.IProduct; 14 import org.eclipse.update.internal.configurator.FeatureEntry; 15 import org.osgi.framework.Bundle; 16 17 24 public class FeatureEntryWrapper implements IProduct { 25 26 private FeatureEntry entry; 27 28 31 public FeatureEntryWrapper(FeatureEntry entry) { 32 super(); 33 this.entry = entry; 34 } 35 36 39 public String getApplication() { 40 return entry.getApplication(); 41 } 42 43 46 public String getName() { 47 return entry.getName(); 48 } 49 50 53 public String getDescription() { 54 return entry.getDescription(); 55 } 56 57 60 public String getId() { 61 return entry.getId(); 62 } 63 64 67 public String getProperty(String key) { 68 return entry.getProperty(key); 69 } 70 71 74 public Bundle getDefiningBundle() { 75 return entry.getDefiningBundle(); 76 } 77 } 78 | Popular Tags |