| Package | Description | 
|---|---|
| javax.ide.command | 
 Command execution classes. 
 | 
| javax.ide.editor | 
 The editor interfaces that extension writers need to implement in 
  order to add a new editor to an IDE. 
 | 
| javax.ide.model | 
 The interfaces and classes implementing an IDE's data model. 
 | 
| javax.ide.model.java | 
 The interfaces and classes implementing an IDE's java model. 
 | 
| javax.ide.model.text | 
 The interfaces and classes that define an IDE's text document and model. 
 | 
| javax.ide.model.xml | 
 The interfaces and classes that define an IDE's xml document and model. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
Document[] | 
Command.getAffectedDocuments()
In general, the command processor manages undo stacks on a per 
   
Document basis. | 
Document | 
Context.getDocument()
The current  
Document the user is working on. | 
| Constructor and Description | 
|---|
Context(Document document,
       Project project)
Constructor. 
 | 
Context(Document document,
       Project project,
       Element[] selection)
Constructor. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
java.util.Set | 
EditorManager.getOpenEditors(Document document)
Get all open editors on a specific document. 
 | 
boolean | 
EditorManager.isOpen(Document document)
Get whether the specified document is open. 
 | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
Project
Project interface. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
abstract Document | 
DocumentFactory.find(java.net.URI uri)
Find the  
Document associated with the URI. | 
abstract Document | 
DocumentFactory.findOrCreate(java.net.URI uri)
Returns the  
Document associated with the URI. | 
Document | 
DocumentEvent.getDocument()
Get the  
Document whose state has changed. | 
abstract Document | 
DocumentFactory.recache(java.net.URI oldURI,
       java.net.URI newURI)
Removes the  
oldURI from the cache and puts the
  newURI in the cache so that it is associated
  with the original Document oldURI pointed at. | 
abstract Document | 
DocumentFactory.uncache(java.net.URI uri)
Remove the specified URI from the cache. 
 | 
| Constructor and Description | 
|---|
DocumentEvent(Document document)
Constructor. 
 | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
JavaSource
The  
JavaSource class. | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
TextDocument
The  
TextDocument class. | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
XMLDocument
The  
XMLDocument class. |