Package | Description |
---|---|
org.netbeans.api.diff | |
org.netbeans.spi.diff |
Modifier and Type | Method and Description |
---|---|
static StreamSource |
StreamSource.createSource(String name,
String title,
String MIMEType,
File file)
Create the default implementation of
StreamSource , that has
just reader and writer from/to a file. |
static StreamSource |
StreamSource.createSource(String name,
String title,
String MIMEType,
Reader r)
Create the default implementation of
StreamSource , that has
just reader and no writer. |
Modifier and Type | Method and Description |
---|---|
static DiffController |
DiffController.create(StreamSource base,
StreamSource modified)
Creates a Diff Controller for supplied left and right sources.
|
DiffView |
Diff.createDiff(StreamSource s1,
StreamSource s2)
Creates single-window diff component that does not include any navigation controls and
is controlled programatically via the returned DiffView interface.
|
static DiffController |
DiffController.createEnhanced(StreamSource base,
StreamSource modified)
Creates a Diff Controller for supplied left and right sources capable of creating enhanced UI.
|
Modifier and Type | Method and Description |
---|---|
DiffView |
DiffVisualizer.createDiff(Difference[] diffs,
StreamSource s1,
StreamSource s2)
Creates single-window diff component that does not include any navigation controls and
is controlled programatically via the returned DiffView interface.
|
abstract DiffControllerImpl |
DiffControllerProvider.createDiffController(StreamSource base,
StreamSource modified)
Creates a Diff Controller for supplied left and right sources.
|
DiffControllerImpl |
DiffControllerProvider.createEnhancedDiffController(StreamSource base,
StreamSource modified)
Creates a Diff Controller for supplied left and right sources.
|
abstract Component |
MergeVisualizer.createView(Difference[] diffs,
StreamSource source1,
StreamSource source2,
StreamSource result)
Show the visual representation of the merging process of two sources.
|