当前位置: 首页>>代码示例>>Java>>正文


Java OurSyntaxWidget.getCaret方法代码示例

本文整理汇总了Java中edu.mit.csail.sdg.alloy4.OurSyntaxWidget.getCaret方法的典型用法代码示例。如果您正苦于以下问题:Java OurSyntaxWidget.getCaret方法的具体用法?Java OurSyntaxWidget.getCaret怎么用?Java OurSyntaxWidget.getCaret使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在edu.mit.csail.sdg.alloy4.OurSyntaxWidget的用法示例。


在下文中一共展示了OurSyntaxWidget.getCaret方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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>&nbsp; Line " + y + ", Column " + x
			+ (t.modified() ? " <b style=\"color:#B43333;\">[modified]</b></html>" : "</html>"));
	return null;
}
 
开发者ID:AlloyTools,项目名称:org.alloytools.alloy,代码行数:24,代码来源:SimpleGUI.java

示例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>&nbsp; Line "+y+", Column "+x
          +(t.modified()?" <b style=\"color:#B43333;\">[modified]</b></html>":"</html>"));
    return null;
}
 
开发者ID:ModelWriter,项目名称:Tarski,代码行数:17,代码来源:SimpleGUI.java


注:本文中的edu.mit.csail.sdg.alloy4.OurSyntaxWidget.getCaret方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。