1 11 package org.eclipse.pde.internal.core.ibundle; 12 13 import org.eclipse.core.runtime.CoreException; 14 import org.eclipse.pde.internal.core.text.IDocumentKey; 15 16 17 public interface IManifestHeader extends IDocumentKey { 18 19 22 String getKey(); 23 24 27 String getValue(); 28 29 36 void setKey(String key) throws CoreException; 37 38 45 void setValue(String value); 46 47 52 void update(); 53 54 59 void update(boolean notify); 60 } 61 | Popular Tags |