1 11 package org.eclipse.update.core; 12 13 import org.eclipse.update.core.model.ArchiveReferenceModel; 14 15 30 public class ArchiveReference 31 extends ArchiveReferenceModel 32 implements IArchiveReference { 33 34 38 public ArchiveReference() { 39 super(); 40 } 41 42 46 public String toString() { 47 String result = "IArchiveReference: "; result = 49 result 50 + ((getPath() == null) 51 ? getURL().toExternalForm() 52 : getPath() + " : " + getURL().toExternalForm()); return result; 54 } 55 } 56 | Popular Tags |