org.eclipse.jface.text.IPaintPositionManager Java Examples

The following examples show how to use org.eclipse.jface.text.IPaintPositionManager. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: IndentGuidesPainter.java    From xds-ide with Eclipse Public License 1.0 4 votes vote down vote up
public void setPositionManager(IPaintPositionManager manager) {
	// no need for a position manager
}
 
Example #2
Source File: PairedBracketsPainter.java    From xds-ide with Eclipse Public License 1.0 4 votes vote down vote up
@Override
public void setPositionManager(IPaintPositionManager manager) {
    fPaintPositionManager= manager;
}
 
Example #3
Source File: WhitespaceCharacterPainter.java    From APICloud-Studio with GNU General Public License v3.0 4 votes vote down vote up
public void setPositionManager(IPaintPositionManager manager)
{
	// no need for a position manager
}
 
Example #4
Source File: LineBackgroundPainter.java    From APICloud-Studio with GNU General Public License v3.0 4 votes vote down vote up
public void setPositionManager(IPaintPositionManager manager)
{
	fPositionManager = manager;
}
 
Example #5
Source File: IndentGuidePainter.java    From IndentGuide with MIT License 4 votes vote down vote up
public void setPositionManager(IPaintPositionManager manager) {
	// no need for a position manager
}