From: Wolfgang M. M. <wol...@us...> - 2004-06-21 15:28:20
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/storage/analysis In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16641/src/org/exist/storage/analysis Modified Files: Token.java Log Message: Added copyResource method to DBBroker. Index: Token.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/storage/analysis/Token.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Token.java 21 Jan 2003 13:29:24 -0000 1.1 --- Token.java 21 Jun 2004 15:27:34 -0000 1.2 *************** *** 20,24 **** * last character of this token. */ ! public int beginLine, beginColumn, endLine, endColumn; /** --- 20,42 ---- * last character of this token. */ ! public int beginLine; ! /** ! * beginLine and beginColumn describe the position of the first character ! * of this token; endLine and endColumn describe the position of the ! * last character of this token. ! */ ! public int beginColumn; ! /** ! * beginLine and beginColumn describe the position of the first character ! * of this token; endLine and endColumn describe the position of the ! * last character of this token. ! */ ! public int endLine; ! /** ! * beginLine and beginColumn describe the position of the first character ! * of this token; endLine and endColumn describe the position of the ! * last character of this token. ! */ ! public int endColumn; /** |