?? push.java
字號:
package com.xrefactory.jedit;import java.awt.*;import javax.swing.*;import java.io.*;import org.gjt.sp.jedit.io.*;public class Push implements Runnable { String[] options; DispatchData data; XrefCharBuffer receipt; public void run() { if (Opt.updateBeforePush()) { boolean panic = s.synchronizedUpdateTagFile(data.callerComponent); if (panic) return; } receipt = data.xTask.callProcessOnFile(options, data); s.beforePushBrowserFiltersUpdates(); Dispatch.dispatch(receipt, data); if (! data.panic) { BrowserTopPanel bp; DockableBrowser b = s.getParentBrowserPanel(data.callerComponent); if (b!=null) { b.browser.updateData(); } else { bp = s.getBrowser(s.getParentView(data.callerComponent)); if (bp!=null) bp.needToUpdate(); } } } public Push(String[] options, DispatchData data) { this.options = options; this.data = data; //&Thread t = new Thread(this); this.run(); //t.start(); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -