Extension SDK 10.1.2

Uses of Interface
oracle.ide.log.LogPage

Packages that use LogPage
oracle.ide.compiler Contains classes that allow addins some level of control on the IDE build system. 
oracle.ide.log Contains the interfaces and classes that allow addins to provide their own log pages. 
oracle.ide.runner Contains classes that allow addins some level of control on the IDE runner system. 
oracle.jdeveloper.compiler Contains classes that allow addins to integrate their own build system translator. 
oracle.jdeveloper.runner Contains classes that allow addins some level of control on the JDeveloper runner system. 
oracle.jdeveloper.uieditor Contains classes that allow addins access to the UIEditor integration objects. 
oracle.jdeveloper.vcs.spi Contains extension-level service provider interfaces for version control system integraton. 
 

Uses of LogPage in oracle.ide.compiler
 

Methods in oracle.ide.compiler that return LogPage
abstract  LogPage Compiler.getOutputLog()
          get{Output|Error}Log gets the default compiler output/error log.
abstract  LogPage Compiler.getErrorLog()
           
 

Uses of LogPage in oracle.ide.log
 

Subinterfaces of LogPage in oracle.ide.log
 interface LogWindow
          The LogWindow is the dockable view responsible for managing log pages.
 

Classes in oracle.ide.log that implement LogPage
 class AbstractLogPage
          The AbstractLogPage is a convenience class that should be extended by integrators that need to add their own LogPage to the LogWindow.
 class DefaultLogPage
          This implementation of LogPage supports the logging of simple text messages as well as Collection message objects.
 class MessagePage
          The MessagePage class provides a simple text field where clients can log their messages.
 

Methods in oracle.ide.log that return LogPage
 LogPage LogPrintStream.getLogPage()
          Directly returns the underlying LogPage for this LogPrintStream.
 LogPage LogPrintStream.getWrappedLogPage()
          The need for a wrapped LogPage instance arises from the fact that: A typical LogPage implementation uses a thread to forward messages to the UI components (to avoid deadlocks in the IDE caused by the automatic showing of the log window or changing log pages in the log window), and Each LogPrintStream uses a thread to forward messages to the underlying LogPage.
 LogPage LogPrintWriter.getLogPage()
          Directly returns the underlying LogPage for this LogPrintWriter.
 LogPage LogPrintWriter.getWrappedLogPage()
          The need for a wrapped LogPage instance arises from the fact that: A typical LogPage implementation uses a thread to forward messages to the UI components (to avoid deadlocks in the IDE caused by the automatic showing of the log window or changing log pages in the log window), and Each LogPrintWriter uses a thread to forward messages to the underlying LogPage.
 LogPage LogWindow.getPage()
          Get the current page.
 LogPage LogRecognizer.create(java.net.URL url, java.lang.Class type)
          Creates an instance of the LogPage associated with the specified URL.
abstract  LogPage[] LogManager.getPages()
          Get a list of all the pages currently opened.
abstract  LogPage LogManager.getMsgPage()
          Get the MessagePage.
abstract  LogPage LogManager.getSelectedPage()
          Gets the currently selected page.
 LogPage[] AbstractLogManager.getPages()
          Concrete implementations must override this method and return the list of opened pages.
 

Methods in oracle.ide.log with parameters of type LogPage
static java.io.PrintWriter LogPipe.getPrintWriter(LogPage logPage)
          Deprecated. Instantiate a LogPrintWriter instead.
static java.io.PrintStream LogPipe.getPrintStream(LogPage logPage)
          Deprecated. Instantiate a LogPrintStream instead.
 void LogOwner.selectPage(LogPage page)
          Select the specified page and make it visible to the user
 void LogOwner.highlightPage(LogPage page)
          This method sets the specified LogPage to be displayed as highlighted to indicate that the page content has changed
abstract  void LogManager.addPage(LogPage page)
          Add and display the specified page to the LogWindow.
abstract  void LogManager.removePage(LogPage page)
          Remove the specified page from the LogWindow.
 void AbstractLogManager.addPage(LogPage page)
          Classes that extend the AbstractLogManager class should override this method from where they should call this method to install the appropriate mouse listener on the specified page.
 void AbstractLogManager.removePage(LogPage page)
          Classes that extend the AbstractLogManager class should override this method from where they should call this method to install the remove any mouse listener installed on the specified page
protected  void AbstractLogManager.installMouseListener(LogPage page)
          The installMouseListener method adds a MouseListener to the specified LogPage.
 

Constructors in oracle.ide.log with parameters of type LogPage
LogPrintStream(LogPage logPage)
          Note: Because of internationalization issues, it is strongly recommended that LogPrintWriter be used whenever possible instead of LogPrintStream to prevent characters from being corrupted when displayed.
LogPrintWriter(LogPage logPage)
          Constructs a LogPrintWriter that is wired into the specified LogPage.
 

Uses of LogPage in oracle.ide.runner
 

Classes in oracle.ide.runner that implement LogPage
 class RunLogPage
          The RunLogPage class is the LogPage used for a running process.
 

Methods in oracle.ide.runner that return LogPage
 LogPage RunProcess.getLogPage()
          Returns the LogPage for this process.
 LogPage RunProcess.getLogPage(boolean create)
           
protected  LogPage RunProcess.makeLogPage(boolean create)
          Creates the RunLogPage for this process.
 

Methods in oracle.ide.runner with parameters of type LogPage
 void SimpleProcess.setLogPage(LogPage logPageOverride)
          Sets the log page where the subprocess's output will be displayed.
 

Uses of LogPage in oracle.jdeveloper.compiler
 

Classes in oracle.jdeveloper.compiler that implement LogPage
 class CompilerPage
           
 

Methods in oracle.jdeveloper.compiler that return LogPage
 LogPage JCompiler.getOutputLog()
           
 LogPage JCompiler.getErrorLog()
           
 

Methods in oracle.jdeveloper.compiler with parameters of type LogPage
 void IdeLog.registerAsynchronousLogPage(LogPage asyncLogPage)
          Set the log page used for asynchronous logging
 void IdeLog.unregisterAsynchronousLogPage(LogPage asyncLogPage)
          Unregister the log page used for asynchronous logging
 

Uses of LogPage in oracle.jdeveloper.runner
 

Methods in oracle.jdeveloper.runner that return LogPage
protected  LogPage JRunProcess.makeLogPage(boolean create)
           
 

Uses of LogPage in oracle.jdeveloper.uieditor
 

Classes in oracle.jdeveloper.uieditor that implement LogPage
 class UIEditorLogPage
          A LogPage implementation specialized for display of CmtMessage instances from one or more CmtComponent objects.
 

Uses of LogPage in oracle.jdeveloper.vcs.spi
 

Constructors in oracle.jdeveloper.vcs.spi with parameters of type LogPage
VCSLogWriter(LogPage page)
          Constructor.
 


Extension SDK

 

Copyright © 1997, 2004, Oracle. All rights reserved.