Java API ReferenceClass Hierarchy | All Classes | All Fields and Methods

com.ibm.xtools.patterns.framework.specialized

Class Activator

+-- AbstractUIPlugin
      +-- Activator

public Class Activator
extends AbstractUIPlugin

Represents the activator class that controls the plug-in life cycle.


Fields
final static public java.lang.StringPLUGIN_ID

The default constructor provided automatically by the compiler.

Constructor summary
Activator()

The constructor.

Method summary
ActivatorgetDefault()

Returns the shared instance.

voidstart(BundleContext context)

Represents the start operation.

voidstop(BundleContext context)

Represents the stop operation.

Constructor detail

Activator

public Activator()

The constructor.


Method detail

getDefault

static public Activator getDefault()

Returns the shared instance.

Returns:

The shared instance.

start

public void start(BundleContext context)

Represents the start operation.

Parameters:

context
- The context of the operation.

Throws:

Exception
- Thrown when a parameter or return value is not valid.

stop

public void stop(BundleContext context)

Represents the stop operation.

Parameters:

context
- The context of the operation.

Throws:

Exception
- Thrown when a parameter or return value is not valid.


Feedback