views:

15

answers:

1

Eclipse's CompareEditor looks beautiful and has a great functionality. But, I'm cannot find a simple way to create a custom CompareEditor with multiple panes?

For example:

class MultiCompareEditor extends CompareEditor {
  MultiCompareEditor (Object... InputElement)
    {
    }
}

After that I'd like to see CompareEditor with number of panes equals to count of InputElements. And it shoud compare neighbours pane in graphics way like normal CompareEditor. May be completed component exists already?

A: 

Hmm... I'm was on a wrong way, ContentMergeViewer is solution for me.

wwarlock