Skip navigation links
C D E G I O P Q S W 

C

com.ibm.xtools.pluglets - package com.ibm.xtools.pluglets
Provides pluglet utilities support.
com.ibm.xtools.pluglets.engine - package com.ibm.xtools.pluglets.engine
Provides the engine for executing pluglets.
com.ibm.xtools.pluglets.host - package com.ibm.xtools.pluglets.host
Provides the pluglet host context.
compile(String[]) - Method in interface com.ibm.xtools.pluglets.host.IPlugletCompiler
Invokes the Java compiler with the given arguments.
compile(String[]) - Method in class com.ibm.xtools.pluglets.host.PlugletCompiler
 
confirm(String, String) - Method in interface com.ibm.xtools.pluglets.host.IPlugletMessageDialog
Displays a message dialog with OK and Cancel buttons.
confirm(String, String) - Method in class com.ibm.xtools.pluglets.Pluglet
Displays a message dialog with OK and Cancel buttons and the given title.
confirm(String) - Method in class com.ibm.xtools.pluglets.Pluglet
Displays a message dialog with OK and Cancel buttons.

D

dumpStack(PrintWriter) - Method in class com.ibm.xtools.pluglets.Pluglet
Prints a stack trace of the current thread to the specified print writer.
dumpStack() - Method in class com.ibm.xtools.pluglets.Pluglet
Prints a stack trace of the current thread to the pluglet output writer.

E

enableTracing() - Method in interface com.ibm.xtools.pluglets.host.IPlugletHost
Used by the pluglet engine to determine whether the host has tracing enabled.
enableTracing() - Method in class com.ibm.xtools.pluglets.host.PlugletHost
 
error(String, String) - Method in interface com.ibm.xtools.pluglets.host.IPlugletMessageDialog
Displays an error dialog with an OK button.
error(String, String) - Method in class com.ibm.xtools.pluglets.Pluglet
Displays an error dialog with an OK button and the given title.
error(String) - Method in class com.ibm.xtools.pluglets.Pluglet
Displays an error dialog with an OK button.
executePluglet(String, String[], String, String) - Method in class com.ibm.xtools.pluglets.engine.PlugletExecutor
Executes a pluglet.
executePluglet(Class, String[]) - Method in class com.ibm.xtools.pluglets.Pluglet
Executes a pluglet.
executePluglet(Class) - Method in class com.ibm.xtools.pluglets.Pluglet
Executes a pluglet.
executePluglet(Class, String) - Method in class com.ibm.xtools.pluglets.Pluglet
Executes a pluglet.
executePluglet(Class, String, String) - Method in class com.ibm.xtools.pluglets.Pluglet
Executes a pluglet.

G

getCompiler() - Method in interface com.ibm.xtools.pluglets.host.IPlugletHost
Used by the pluglet engine to retrieve the optional compiler invocation interface.
getCompiler() - Method in class com.ibm.xtools.pluglets.host.PlugletHost
 
getContext() - Method in interface com.ibm.xtools.pluglets.host.IPlugletHost
Used by the pluglet engine to retrieve the URLClassLoader objects.
getContext() - Method in class com.ibm.xtools.pluglets.host.PlugletHost
 
getDialog() - Method in interface com.ibm.xtools.pluglets.host.IPlugletHost
Used by the pluglet engine to retrieve the IPlugletMessageDialog implementation.
getDialog() - Method in class com.ibm.xtools.pluglets.host.PlugletHost
 
getDialog() - Method in class com.ibm.xtools.pluglets.Pluglet
Retrieves the host's IPlugletMessageDialog implementation.
getDirectory() - Method in class com.ibm.xtools.pluglets.Pluglet
Retrieves the full path of the pluglet directory.
getExtraClasspathEntries() - Method in interface com.ibm.xtools.pluglets.host.IPlugletHost2
Used by the pluglet engine to retrieve the extra classpath entries, if any.
getExtraClasspathEntries() - Method in class com.ibm.xtools.pluglets.host.PlugletHost
 
getFile() - Method in class com.ibm.xtools.pluglets.Pluglet
Retrieves the full path of the pluglet file.
getFullName() - Method in class com.ibm.xtools.pluglets.Pluglet
Retrieves the full name of the pluglet.
getName() - Method in class com.ibm.xtools.pluglets.Pluglet
Retrieves the name of the pluglet.
getOutput() - Method in interface com.ibm.xtools.pluglets.host.IPlugletHost
Used by the pluglet engine to retrieve the stream used for the pluglet output, the pluglet engine's tracing output, and the compiler error messages.
getOutput() - Method in class com.ibm.xtools.pluglets.host.PlugletHost
 

I

inform(String, String) - Method in interface com.ibm.xtools.pluglets.host.IPlugletMessageDialog
Displays an information dialog with an OK button.
inform(String, String) - Method in class com.ibm.xtools.pluglets.Pluglet
Displays an information dialog with an OK button and the given title.
inform(String) - Method in class com.ibm.xtools.pluglets.Pluglet
Displays an information dialog with an OK button.
IPlugletCompiler - Interface in com.ibm.xtools.pluglets.host
Compiles the pluglet.
IPlugletHost - Interface in com.ibm.xtools.pluglets.host
This interface must be implemented by pluglet hosts that instantiate the PlugletExecutor class.
IPlugletHost2 - Interface in com.ibm.xtools.pluglets.host
This interface can optionally be implemented by pluglet hosts that instantiate the PlugletExecutor class.
IPlugletMessageDialog - Interface in com.ibm.xtools.pluglets.host
Displays messages and error dialogs for the pluglet.

O

out - Variable in class com.ibm.xtools.pluglets.Pluglet
The output for this pluglet.

P

Pluglet - Class in com.ibm.xtools.pluglets
Provides pluglet properties and basic services used by pluglets.
Pluglet() - Constructor for class com.ibm.xtools.pluglets.Pluglet
 
PlugletCompiler - Class in com.ibm.xtools.pluglets.host
The default implementation of the IPlugletCompiler interface.
PlugletCompiler(PrintWriter, String, boolean) - Constructor for class com.ibm.xtools.pluglets.host.PlugletCompiler
Constructs a pluglet compiler.
PlugletCompiler() - Constructor for class com.ibm.xtools.pluglets.host.PlugletCompiler
Constructs a pluglet compiler.
PlugletException - Exception in com.ibm.xtools.pluglets.engine
Exception thrown by methods in the PlugletExecutor class.
PlugletException(String) - Constructor for exception com.ibm.xtools.pluglets.engine.PlugletException
Constructs a pluglet exception with the specified detailed message.
PlugletExecutor - Class in com.ibm.xtools.pluglets.engine
Provides an engine for executing a Java source file or class file as a pluglet.
PlugletExecutor(IPlugletHost) - Constructor for class com.ibm.xtools.pluglets.engine.PlugletExecutor
Constructs a PlugletExecutor instance.
PlugletHost - Class in com.ibm.xtools.pluglets.host
The default implementation of the IPlugletHost interface and the optional IPlugletHost2 interface.
PlugletHost(URLClassLoader[], IPlugletCompiler, PrintWriter, IPlugletMessageDialog, boolean, String[]) - Constructor for class com.ibm.xtools.pluglets.host.PlugletHost
Constructs a default IPlugletHost and IPlugletHost2 implementation.
PlugletHost(URLClassLoader[], IPlugletCompiler, PrintWriter, IPlugletMessageDialog, boolean) - Constructor for class com.ibm.xtools.pluglets.host.PlugletHost
Constructs a default IPlugletHost and IPlugletHost2 implementation.
PLUGLETMAIN - Static variable in class com.ibm.xtools.pluglets.engine.PlugletExecutor
The name of a pluglet main entry point.
PLUGLETMAIN_ARGS - Static variable in class com.ibm.xtools.pluglets.engine.PlugletExecutor
The argument types of a pluglet main entry point.
printStackTrace(Throwable, PrintWriter) - Method in class com.ibm.xtools.pluglets.Pluglet
Prints the throwable and its backtrace to the specified print writer.
printStackTrace(Throwable) - Method in class com.ibm.xtools.pluglets.Pluglet
Prints the throwable and its backtrace to the pluglet output writer.
prompt(String, String, String) - Method in interface com.ibm.xtools.pluglets.host.IPlugletMessageDialog
Displays an input dialog with a prompt message, a text input field, and OK and Cancel buttons.
prompt(String, String, String) - Method in class com.ibm.xtools.pluglets.Pluglet
Displays an input dialog with a prompt message, the text input field initial text, the title, and OK button and Cancel buttons.
prompt(String, String) - Method in class com.ibm.xtools.pluglets.Pluglet
Displays an input dialog with a prompt message, the text input field initial text, and OK and Cancel buttons.
prompt(String) - Method in class com.ibm.xtools.pluglets.Pluglet
Displays an input dialog with a prompt message, a text input field, and OK and Cancel buttons.

Q

question(String, String) - Method in interface com.ibm.xtools.pluglets.host.IPlugletMessageDialog
Displays a question message dialog with Yes and No buttons.
question(String, String) - Method in class com.ibm.xtools.pluglets.Pluglet
Displays a question message dialog with Yes and No buttons and the given title.
question(String) - Method in class com.ibm.xtools.pluglets.Pluglet
Displays a question message dialog with Yes and No buttons.

S

setDialog(IPlugletMessageDialog) - Method in class com.ibm.xtools.pluglets.Pluglet
Sets the host's IPlugletMessageDialog implementation.
setDirectory(String) - Method in class com.ibm.xtools.pluglets.Pluglet
Sets the full path of the pluglet directory.
setFile(String) - Method in class com.ibm.xtools.pluglets.Pluglet
Sets the full path of the pluglet file.
setFullName(String) - Method in class com.ibm.xtools.pluglets.Pluglet
Sets the full name of the pluglet.
setName(String) - Method in class com.ibm.xtools.pluglets.Pluglet
Sets the name of the pluglet.

W

warning(String, String) - Method in interface com.ibm.xtools.pluglets.host.IPlugletMessageDialog
Displays a warning dialog with an OK button.
warning(String, String) - Method in class com.ibm.xtools.pluglets.Pluglet
Displays a warning dialog with an OK button and the given title.
warning(String) - Method in class com.ibm.xtools.pluglets.Pluglet
Displays a warning dialog with an OK button.
C D E G I O P Q S W 
Skip navigation links