org.eclipse.jface.text.contentassist.ContextInformationValidator Java Examples

The following examples show how to use org.eclipse.jface.text.contentassist.ContextInformationValidator. 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: HContentAssistProcessor.java    From http4e with Apache License 2.0 4 votes vote down vote up
public IContextInformationValidator getContextInformationValidator(){
   return new ContextInformationValidator(this);
}
 
Example #2
Source File: Ch5CompletionEditor.java    From http4e with Apache License 2.0 4 votes vote down vote up
public RecentWordContentAssistProcessor( WordTracker tracker) {
   super();
   contextInfoValidator = new ContextInformationValidator(this);
   wordTracker = tracker;
}
 
Example #3
Source File: TexCompletionProcessor.java    From texlipse with Eclipse Public License 1.0 4 votes vote down vote up
public IContextInformationValidator getContextInformationValidator() {
	return new ContextInformationValidator(this);
}
 
Example #4
Source File: ImpexInstructionContentAssistProcessor.java    From hybris-commerce-eclipse-plugin with Apache License 2.0 4 votes vote down vote up
public ImpexInstructionContentAssistProcessor() {
	super();
	iciv = new ContextInformationValidator(this);
}
 
Example #5
Source File: ImpexCommandContentAssistProcessor.java    From hybris-commerce-eclipse-plugin with Apache License 2.0 4 votes vote down vote up
public ImpexCommandContentAssistProcessor() {
	super();
	iciv = new ContextInformationValidator(this);
}
 
Example #6
Source File: ImpexDataContentAssistProcessor.java    From hybris-commerce-eclipse-plugin with Apache License 2.0 4 votes vote down vote up
public ImpexDataContentAssistProcessor() {
	super();
	iciv = new ContextInformationValidator(this);
}
 
Example #7
Source File: ImpexTypeSystemContentAssistProcessor.java    From hybris-commerce-eclipse-plugin with Apache License 2.0 4 votes vote down vote up
public ImpexTypeSystemContentAssistProcessor() {
	super();
	iciv = new ContextInformationValidator(this);
}
 
Example #8
Source File: ImpexCommentContentAssistProcessor.java    From hybris-commerce-eclipse-plugin with Apache License 2.0 4 votes vote down vote up
public ImpexCommentContentAssistProcessor() {
	super();
	iciv = new ContextInformationValidator(this);
}
 
Example #9
Source File: ImpexTypeAttributeContentAssistProcessor.java    From hybris-commerce-eclipse-plugin with Apache License 2.0 4 votes vote down vote up
public ImpexTypeAttributeContentAssistProcessor() {
	super();
	iciv = new ContextInformationValidator(this);
}