Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 


Eclipse Platform
Release 3.5

org.eclipse.debug.core.sourcelookup
Interface ISourceContainerType

All Superinterfaces:
ISourceContainerTypeDelegate

public interface ISourceContainerType
extends ISourceContainerTypeDelegate

A source container type represents a kind of container of source code. For example, a source container type may be a project or a directory. A specific project or directory is represented by an instance of a source container type, which is called a source container (ISourceContainer).

A source container type is contributed via the sourceContainerTypes extension point, providing a delegate to the work specific to the contributed type. Following is an example contribution.

 <extension point="org.eclipse.debug.core.sourceContainerTypes">
        <sourceContainerType
                name="Project"
                class="org.eclipse.debug.internal.core.sourcelookup.containers.ProjectSourceContainerType"
                id="org.eclipse.debug.core.containerType.project"
                description="A project in the workspace">
        </sourceContainerType>
 </extension>
 

Clients contributing a source container type implement ISourceContainerTypeDelegate.

Since:
3.0
See Also:
ISourceContainer, ISourceContainerTypeDelegate
Restriction:
This interface is not intended to be implemented by clients.
Restriction:
This interface is not intended to be extended by clients.

Method Summary
  String getDescription ()
          Returns a short description of this source container type that can be used for presentation purposes, or null if none.
  String getId ()
          Returns the unique identifier associated with this source container type.
  String getName ()
          Returns the name of this source container type that can be used for presentation purposes.
 
Methods inherited from interface org.eclipse.debug.core.sourcelookup. ISourceContainerTypeDelegate
createSourceContainer, getMemento
 

Method Detail

getName


String getName()
Returns the name of this source container type that can be used for presentation purposes. For example, Working Set or Project. The value returned is identical to the name specified in plugin.xml by the name attribute.

Returns:
the name of this source container type

getId


String getId()
Returns the unique identifier associated with this source container type. The value returned is identical to the identifier specified in plugin.xml by the id attribute.

Returns:
the unique identifier associated with this source container type

getDescription


String getDescription()
Returns a short description of this source container type that can be used for presentation purposes, or null if none.

Returns:
a short description of this source container type, or null

Eclipse Platform
Release 3.5

Guidelines for using Eclipse APIs.

Copyright (c) Eclipse contributors and others 2000, 2008. All rights reserved.


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire