1 11 package org.eclipse.pde.internal.ui.model; 12 13 import java.io.*; 14 15 public interface IDocumentAttribute extends Serializable { 16 17 void setEnclosingElement(IDocumentNode node); 18 IDocumentNode getEnclosingElement(); 19 20 void setNameOffset(int offset); 21 int getNameOffset(); 22 23 void setNameLength(int length); 24 int getNameLength(); 25 26 void setValueOffset(int offset); 27 int getValueOffset(); 28 29 void setValueLength(int length); 30 int getValueLength(); 31 32 String getAttributeName(); 33 String getAttributeValue(); 34 35 String write(); 36 37 } 38 | Popular Tags |