1 11 package org.eclipse.pde.internal.core.isite; 12 13 import org.eclipse.core.runtime.CoreException; 14 15 public interface ISiteDescription extends ISiteObject { 16 String P_URL = "url"; String P_TEXT = "text"; 19 String getURL(); 20 String getText(); 21 22 void setURL(String url) throws CoreException; 23 void setText(String text) throws CoreException; 24 25 } 26 | Popular Tags |