alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *			Sun Public License Notice
 *
 * The contents of this file are subject to the Sun Public License Version
 * 1.0 (the "License"). You may not use this file except in compliance
 * with the License. A copy of the License is available at
 * http://www.sun.com/
 * 
 * The Original Code is Terminal Emulator.
 * The Initial Developer of the Original Code is Sun Microsystems, Inc..
 * Portions created by Sun Microsystems, Inc. are Copyright (C) 2001.
 * All Rights Reserved.
 *
 * Contributor(s): Ivan Soleimanipour.
 */

/*
 * "WordDelineator.java"
 * WordDelineator.java 1.6 01/07/26
 */

package org.netbeans.lib.terminalemulator;

/*
 * Class used by Term to find the boundaries of a word, the region
 * of text that gets selected when you double-click.
 *

* Term has a default WordDelineator which can be changed by using this class * as an adapter and overriding either charClass() or findLeft() and * findRight() and assigning an object of the resulting class via * Term.setWordDelineator(). */ public class WordDelineator { /** * Return the character equivalence class of 'c'. *

* This is used by findLeft() and findRight() which operate such that * a word is bounded by a change in character class. *

* A character equivalence class is characterised by a number, any number, * that is different from numbers for other character classes. For example, * this implementation, which is used as the default WordDelineator for * Term returns 1 for spaces and 0 for everything else. */ protected int charClass(char c) { if (Character.isWhitespace(c)) return 1; else return 0; } /** * Return index of char at the beginning of the word. */ protected int findLeft(StringBuffer buf, int start) { int cclass = charClass(buf.charAt(start)); // go left until a character of differing class is found int lx = start; while (lx > 0 && charClass(buf.charAt(lx-1)) == cclass) { lx--; } return lx; } /** * Return index of char past the word. */ protected int findRight(StringBuffer buf, int start) { int cclass = charClass(buf.charAt(start)); // go right until a character of a differing class is found. int rx = start; while (rx < buf.length() && charClass(buf.charAt(rx)) == cclass) { rx++; } rx--; return rx; } }

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.