1 11 package org.eclipse.update.internal.search; 12 13 import java.net.*; 14 15 import org.eclipse.update.search.*; 16 17 public class QueryUpdateSiteAdapter extends UpdateSiteAdapter implements IQueryUpdateSiteAdapter { 18 private String mappingId; 19 20 public QueryUpdateSiteAdapter(String label, URL url, String mappingId) { 21 super(label, url); 22 this.mappingId = mappingId; 23 } 24 25 public String getMappingId() { 26 return mappingId; 27 } 28 } 29 | Popular Tags |