Recovered from cvs revision 2007-06-29 11:24:00
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id: Awk.java,v 1.11 2007/06/24 11:14:58 bacon Exp $
|
||||
* $Id: Awk.java,v 1.12 2007/06/28 15:45:57 bacon Exp $
|
||||
*
|
||||
* {License}
|
||||
*/
|
||||
@ -263,6 +263,16 @@ public abstract class Awk
|
||||
setword (ow, nw);
|
||||
}
|
||||
|
||||
public void unsetWord (String ow)
|
||||
{
|
||||
setword (ow, null);
|
||||
}
|
||||
|
||||
public void unsetAllWords ()
|
||||
{
|
||||
setword (null, null);
|
||||
}
|
||||
|
||||
/* == source code management == */
|
||||
protected abstract int openSource (int mode);
|
||||
protected abstract int closeSource (int mode);
|
||||
|
Reference in New Issue
Block a user