1 11 package org.eclipse.debug.core.sourcelookup.containers; 12 13 import org.eclipse.core.resources.IContainer; 14 import org.eclipse.debug.core.DebugPlugin; 15 import org.eclipse.debug.core.sourcelookup.ISourceContainerType; 16 17 25 public class FolderSourceContainer extends ContainerSourceContainer { 26 27 31 public static final String TYPE_ID = DebugPlugin.getUniqueIdentifier() + ".containerType.folder"; 33 34 40 public FolderSourceContainer(IContainer folder, boolean subfolders) { 41 super(folder, subfolders); 42 } 43 44 47 public ISourceContainerType getType() { 48 return getSourceContainerType(TYPE_ID); 49 } 50 51 } 52 | Popular Tags |