1 11 package org.eclipse.core.internal.plugins; 12 13 import org.eclipse.core.runtime.*; 14 15 public class Library implements ILibrary { 16 public String path; 17 18 public Library(String path) { 19 this.path = path; 20 } 21 22 public String [] getContentFilters() { 23 return null; 24 } 25 26 public IPath getPath() { 27 return new Path(path); 28 } 29 30 public String getType() { 31 return ILibrary.CODE; 32 } 33 34 public boolean isExported() { 35 return true; 36 } 37 38 public boolean isFullyExported() { 39 return true; 40 } 41 42 public String [] getPackagePrefixes() { 43 return null; 44 } 45 46 } 47 | Popular Tags |