本文整理汇总了Java中edu.mit.csail.sdg.alloy4.OurSyntaxWidget类的典型用法代码示例。如果您正苦于以下问题:Java OurSyntaxWidget类的具体用法?Java OurSyntaxWidget怎么用?Java OurSyntaxWidget使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
OurSyntaxWidget类属于edu.mit.csail.sdg.alloy4包,在下文中一共展示了OurSyntaxWidget类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: notifyChange
import edu.mit.csail.sdg.alloy4.OurSyntaxWidget; //导入依赖的package包/类
/** Updates the status bar at the bottom of the screen. */
private Runner notifyChange() {
if (wrap)
return wrapMe();
commands = null;
if (text == null)
return null; // If this was called prior to the "text" being fully
// initialized
OurSyntaxWidget t = text.get();
if (Util.onMac())
frame.getRootPane().putClientProperty("windowModified", Boolean.valueOf(t.modified()));
if (t.isFile())
frame.setTitle(t.getFilename());
else
frame.setTitle("Alloy Analyzer " + Version.version());
toolbar.setBorder(new OurBorder(false, false, text.count() <= 1, false));
int c = t.getCaret();
int y = t.getLineOfOffset(c) + 1;
int x = c - t.getLineStartOffset(y - 1) + 1;
status.setText("<html> Line " + y + ", Column " + x
+ (t.modified() ? " <b style=\"color:#B43333;\">[modified]</b></html>" : "</html>"));
return null;
}
示例2: notifyChange
import edu.mit.csail.sdg.alloy4.OurSyntaxWidget; //导入依赖的package包/类
/** Updates the status bar at the bottom of the screen. */
private Runner notifyChange() {
if (wrap) return wrapMe();
commands=null;
if (text==null) return null; // If this was called prior to the "text" being fully initialized
OurSyntaxWidget t = text.get();
if (Util.onMac()) frame.getRootPane().putClientProperty("windowModified", Boolean.valueOf(t.modified()));
if (t.isFile()) frame.setTitle(t.getFilename()); else frame.setTitle("Alloy Analyzer "+Version.version());
toolbar.setBorder(new OurBorder(false, false, text.count()<=1, false));
int c = t.getCaret();
int y = t.getLineOfOffset(c)+1;
int x = c - t.getLineStartOffset(y-1)+1;
status.setText("<html> Line "+y+", Column "+x
+(t.modified()?" <b style=\"color:#B43333;\">[modified]</b></html>":"</html>"));
return null;
}
示例3: doFindNext
import edu.mit.csail.sdg.alloy4.OurSyntaxWidget; //导入依赖的package包/类
/** This method performs Edit->FindNext. */
private Runner doFindNext() {
if (wrap) return wrapMe();
if (lastFind.length()==0) return null;
OurSyntaxWidget t = text.get();
String all = t.getText();
int i = Util.indexOf(all, lastFind, t.getCaret()+(lastFindForward?0:-1),lastFindForward,lastFindCaseSensitive);
if (i<0) {
i=Util.indexOf(all, lastFind, lastFindForward?0:(all.length()-1), lastFindForward, lastFindCaseSensitive);
if (i<0) { log.logRed("The specified search string cannot be found."); return null; }
log.logRed("Search wrapped.");
} else {
log.clearError();
}
if (lastFindForward) t.moveCaret(i, i+lastFind.length()); else t.moveCaret(i+lastFind.length(), i);
t.requestFocusInWindow();
return null;
}
示例4: doFindNext
import edu.mit.csail.sdg.alloy4.OurSyntaxWidget; //导入依赖的package包/类
/** This method performs Edit->FindNext. */
private Runner doFindNext() {
if (wrap)
return wrapMe();
if (lastFind.length() == 0)
return null;
OurSyntaxWidget t = text.get();
String all = t.getText();
int i = Util.indexOf(all, lastFind, t.getCaret() + (lastFindForward ? 0 : -1), lastFindForward,
lastFindCaseSensitive);
if (i < 0) {
i = Util.indexOf(all, lastFind, lastFindForward ? 0 : (all.length() - 1), lastFindForward,
lastFindCaseSensitive);
if (i < 0) {
log.logRed("The specified search string cannot be found.");
return null;
}
log.logRed("Search wrapped.");
} else {
log.clearError();
}
if (lastFindForward)
t.moveCaret(i, i + lastFind.length());
else
t.moveCaret(i + lastFind.length(), i);
t.requestFocusInWindow();
return null;
}