1 11 package org.eclipse.pde.internal.core.ifeature; 12 13 import org.eclipse.core.runtime.CoreException; 14 import org.eclipse.pde.core.IIdentifiable; 15 16 public interface IVersionable extends IIdentifiable { 17 21 public static final String P_VERSION = "version"; 23 28 public String getVersion(); 29 30 37 void setVersion(String version) throws CoreException; 38 } 39 | Popular Tags |