程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> 【Eclipse插件開發】基於WTP開發自定義的JSP編輯器(九)

【Eclipse插件開發】基於WTP開發自定義的JSP編輯器(九)

編輯:關於JSP

定制StructuredTextEditor源碼即時校驗

上一節我們定制了WTP StructuredTextEditor的自動提示功能特征,本節將定制另外一個功能特征即 時源碼校驗。所謂源碼即時校驗,就是在用戶編輯過程中(並未保存),針對用戶編輯的內容改變做即時 校驗,並給用戶即時反饋相關的錯誤或者其他類型的提示信息。在本節中,我們將以標簽的即時校驗為例 ,演示如何定制WTP StructuredTextEditor的源碼即時校驗。

在定制之前,我們先來看一下WTP StructuredTextEditor已有的源碼即時校驗功能:

我們看到,我們刪除</jsp:text>的瞬間,WTP StructuredTextEditor的即時校驗就給出了錯誤 提示。其實我們在很多其他的編輯器,例如java源碼編輯器等,都可以看到類似的即時校驗功能。

【JFace Text Framework中相關內容】

說白了,我們的源碼編輯對應的控件就是ISourceViewer, 那麼這個校驗也理所當然應該是ISourceViewer所提供的一個服務。JFace Text Framework中確實針對源 碼即時校驗提供了相應的機制,我們看一下相應的接口和運行原理。

【相關接口】

1、IReconciler (org.eclipse.jface.text.reconciler.IReconciler),調解者,當文檔發生變化時,根據分區類型( 如果這個概念忘記了,翻一下前面的文章)提供相應的調解策略(直接說成是驗證策略吧^_^)。 public interface IReconciler {
/**
* Installs the reconciler on the given text viewer. After this method has been
* finished, the reconciler is operational, i.e., it works without requesting
* further client actions until <code>uninstall</code> is called.
*
* @param textViewer the viewer on which the reconciler is installed
*/
void install(ITextViewer textViewer);
/**
* Removes the reconciler from the text viewer it has
* previously been installed on.
*/
void uninstall();
/**
* Returns the reconciling strategy registered with the reconciler
* for the specified content type.
*
* @param contentType the content type for which to determine the reconciling strategy
* @return the reconciling strategy registered for the given content type, or
* <code>null</code> if there is no such strategy
*/
IReconcilingStrategy getReconcilingStrategy(String contentType);
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved