1 11 package org.eclipse.update.internal.configurator; 12 13 import java.net.*; 14 15 16 public class BootDescriptor { 17 private String id; 18 private String version; 19 private String [] libs; 20 private URL dir; 21 22 public BootDescriptor(String id, String version, String [] libs, URL dir) { 23 this.id = id; 24 this.version = version; 25 this.libs = libs; 26 this.dir = dir; 27 } 28 29 public String getId() { 30 return id; 31 } 32 33 public String getVersion() { 34 return version; 35 } 36 37 public String [] getLibraries() { 38 return libs; 39 } 40 41 public URL getPluginDirectoryURL() { 42 return dir; 43 } 44 } 45 | Popular Tags |