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


Java Utilities.getNextWord方法代码示例

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


在下文中一共展示了Utilities.getNextWord方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: actionPerformed

import javax.swing.text.Utilities; //导入方法依赖的package包/类
/**
 * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
 */
public void actionPerformed(ActionEvent e) {
    JTextComponent target = getTextComponent(e);
    boolean        beep   = true;

    if ((target != null) && (target.isEditable())) {

        try {

            // select the next word
            int    offs    = target.getCaretPosition();
            int    endOffs;
            String s       = target.getDocument().getText(offs, 1);

            if (Character.isWhitespace(s.charAt(0))) {
                endOffs = Utilities.getNextWord(target, offs);
                endOffs = Utilities.getWordEnd(target, endOffs);
            } else {
                endOffs = Utilities.getWordEnd(target, offs);
            }

            target.moveCaretPosition(endOffs);

            // and then delete it
            target.replaceSelection("");
            beep = false;
        } catch (BadLocationException exc) {
            // nothing to do, because we set beep to true already
        }
    }

    if (beep) {
        provideErrorFeedback(target);
    }
}
 
开发者ID:khuxtable,项目名称:seaglass,代码行数:38,代码来源:MacEditorKit.java

示例2: getWordEnd

import javax.swing.text.Utilities; //导入方法依赖的package包/类
private static int getWordEnd(JTextComponent jtc, int start)
        throws BadLocationException {
    try {
        return Utilities.getNextWord(jtc, start);
    } catch (BadLocationException ble) {
        int end = jtc.getText().length();
        if (start < end) {
            return end;
        } else {
            throw ble;
        }
    }
}
 
开发者ID:JabRef,项目名称:jabref,代码行数:14,代码来源:EmacsKeyBindings.java

示例3: getWordEnd

import javax.swing.text.Utilities; //导入方法依赖的package包/类
private static int getWordEnd(JTextComponent jtc, int start)
		throws BadLocationException {
	try {
		return Utilities.getNextWord(jtc, start);
	} catch (BadLocationException ble) {
		int end = jtc.getText().length();
		if (start < end) {
			return end;
		} else {
			throw ble;
		}
	}
}
 
开发者ID:jpverkamp,项目名称:wombat-ide,代码行数:14,代码来源:EmacsKeyBindings.java

示例4: getNextWord

import javax.swing.text.Utilities; //导入方法依赖的package包/类
protected int getNextWord(RTextArea textArea, int offs)
							throws BadLocationException {
	return Utilities.getNextWord(textArea, offs);
}
 
开发者ID:Thecarisma,项目名称:powertext,代码行数:5,代码来源:RTextAreaEditorKit.java

示例5: getNextVisualPositionFrom

import javax.swing.text.Utilities; //导入方法依赖的package包/类
public int getNextVisualPositionFrom(JTextComponent text,
                                     int pos,
                                     Position.Bias bias,
                                     int direction,
                                     Position.Bias[] biasRet)
                              throws BadLocationException
{
  Point pt;

  int newpos = pos;
  switch (direction)
  {
    case SwingConstants.NORTH:
      // Find out where the caret want to be positioned ideally.
      pt = text.getCaret().getMagicCaretPosition();

      // Calculate its position above.
      newpos = Utilities.getPositionAbove(text, pos, (pt != null) ? pt.x : 0);

      // If we have a valid position, then calculate the next word start
      // from there.
      if (newpos != -1)
        return Utilities.getWordStart(text, newpos);
      else
        return pos;
    case SwingConstants.SOUTH:
      // Find out where the caret want to be positioned ideally.
      pt = text.getCaret().getMagicCaretPosition();

      // Calculate its position below.
      newpos = Utilities.getPositionBelow(text, pos, (pt != null) ? pt.x : 0);

      // If we have a valid position, then calculate the next word start
      // from there.
      if (newpos != -1)
        return Utilities.getWordStart(text, newpos);
      else
        return pos;
    case SwingConstants.WEST:
      // Calculate the next word start.
      newpos = Utilities.getWordStart(text, newpos);

      // If that means that the caret will not move, return
      // the start of the previous word.
      if (newpos != pos)
        return newpos;
      else
        return Utilities.getPreviousWord(text, newpos);
    case SwingConstants.EAST:
      return Utilities.getNextWord(text, newpos);
    default:
      // Do whatever the super implementation did.
      return super.getNextVisualPositionFrom(text, pos, bias,
                                             direction, biasRet);
  }
}
 
开发者ID:vilie,项目名称:javify,代码行数:57,代码来源:NavigationFilterDemo.java

示例6: getNextVisualPositionFrom

import javax.swing.text.Utilities; //导入方法依赖的package包/类
public int getNextVisualPositionFrom(JTextComponent text,
                                     int pos,
                                     Position.Bias bias,
                                     int direction,
                                     Position.Bias[] biasRet)
                              throws BadLocationException
{
  Point pt;
  
  int newpos = pos;
  switch (direction)
  {
    case SwingConstants.NORTH:
      // Find out where the caret want to be positioned ideally.
      pt = text.getCaret().getMagicCaretPosition();
      
      // Calculate its position above.
      newpos = Utilities.getPositionAbove(text, pos, (pt != null) ? pt.x : 0);

      // If we have a valid position, then calculate the next word start
      // from there.
      if (newpos != -1)
        return Utilities.getWordStart(text, newpos);
      else
        return pos;
    case SwingConstants.SOUTH:
      // Find out where the caret want to be positioned ideally.
      pt = text.getCaret().getMagicCaretPosition();

      // Calculate its position below.
      newpos = Utilities.getPositionBelow(text, pos, (pt != null) ? pt.x : 0);

      // If we have a valid position, then calculate the next word start
      // from there.
      if (newpos != -1)
        return Utilities.getWordStart(text, newpos);
      else
        return pos;
    case SwingConstants.WEST:
      // Calculate the next word start.
      newpos = Utilities.getWordStart(text, newpos);
      
      // If that means that the caret will not move, return
      // the start of the previous word.
      if (newpos != pos)
        return newpos;
      else
        return Utilities.getPreviousWord(text, newpos);
    case SwingConstants.EAST:
      return Utilities.getNextWord(text, newpos);
    default:
      // Do whatever the super implementation did.
      return super.getNextVisualPositionFrom(text, pos, bias,
                                             direction, biasRet);
  }
}
 
开发者ID:nmldiegues,项目名称:jvm-stm,代码行数:57,代码来源:NavigationFilterDemo.java


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