1 11 package org.eclipse.core.internal.watson; 12 13 import java.io.*; 14 import org.eclipse.core.runtime.IPath; 15 16 20 public interface IElementInfoFlattener { 21 28 public Object readElement(IPath elementPath, DataInput input) throws IOException; 29 30 38 public void writeElement(IPath elementPath, Object element, DataOutput output) throws IOException; 39 } 40 | Popular Tags |