1 11 package org.eclipse.pde.internal.core; 12 13 import java.io.File ; 14 15 public class EntryFileAdapter extends FileAdapter { 16 private ModelEntry entry; 17 18 23 public EntryFileAdapter(ModelEntry entry, File file, IFileAdapterFactory factory) { 24 super(null, file, factory); 25 this.entry = entry; 26 } 27 28 public ModelEntry getEntry() { 29 return entry; 30 } 31 } 32 | Popular Tags |