/* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
package ifc.text;
import lib.MultiMethodTest;
import com.sun.star.text.XTextCursor;
/** * Testing <code>com.sun.star.text.XTextCursor</code> * interface methods : * <ul> * <li><code> collapseToStart()</code></li> * <li><code> collapseToEnd()</code></li> * <li><code> isCollapsed()</code></li> * <li><code> goLeft()</code></li> * <li><code> goRight()</code></li> * <li><code> gotoStart()</code></li> * <li><code> gotoEnd()</code></li> * <li><code> gotoRange()</code></li> * </ul> <p> * * During this test the component text is changed, * that's why it must be stored before methods' tests, * and restored after. <p> * * Test is <b> NOT </b> multithread compliant. <p> * @see com.sun.star.text.XTextCursor
*/ publicclass _XTextCursor extends MultiMethodTest {
public XTextCursor oObj = null; // oObj filled by MultiMethodTest
String oldText = null ;
/** * First some text is set (for component to has at least some * text), cursor is expanded to the whole text (to be not collapsed), * the <code>collapseToEnd</code> is called. Then current cursor * text is examined. <p> * * Has <b>OK</b> status if the current cursor text is an * empty string.
*/ publicvoid _collapseToEnd(){ boolean bCol = false;
/** * First some text is set (for component to has at least some * text), cursor is expanded to the whole text (to be not collapsed), * the <code>collapseToStart</code> is called. Then current cursor * text is examined. <p> * * Has <b>OK</b> status if the current cursor text is an * empty string.
*/ publicvoid _collapseToStart(){ boolean bCol = false;
oObj.setString("XTextCursor");
oObj.gotoStart(false);
oObj.gotoEnd(true);
/** * First the cursor is moved to the end of text (to have a space * for left cursor moving, and moves the cursor left by a number * of characters. <p> * * Has <b>OK</b> status if the method returns <code>true</code>, * and the current cursor string has the same length as number * of characters the cursor was moved by.
*/ publicvoid _goLeft(){ boolean bLeft = false; short n = 5;
/** * First the cursor is moved to the start of text (to have a space * for right cursor moving, and moves the cursor right by a number * of characters. <p> * * Has <b>OK</b> status if the method returns <code>true</code>, * and the current cursor string has the same length as number * of characters the cursor was moved by.
*/ publicvoid _goRight(){ boolean bRight = false; short n = 5;
/** * Test calls the method. <p> * Has <b> OK </b> status if the method <code>goRight()</code> * returns <code>false</code> (cursor can't move to the right).
*/ publicvoid _gotoEnd(){ boolean bEnd = false; short n = 1;
oObj.gotoEnd(false);
bEnd = !oObj.goRight(n, false) ;
tRes.tested("gotoEnd()", bEnd );
}
/** * First the whole text is set to a string, and cursor * is moved to the range situated at the start of the * text. <p> * * Has <b>OK</b> status if some characters to the right * of the current cursor position are the beginning of * the text.
*/ publicvoid _gotoRange(){ boolean bRange = false;
if (!bRange) log.println("getString() returned '" +
oObj.getString() + "'") ;
tRes.tested("gotoRange()", bRange );
}
/** * Test calls the method. <p> * Has <b> OK </b> status if the method <code>goLeft()</code> * returns <code>false</code> (cursor can't move to the left).
*/ publicvoid _gotoStart(){ boolean bStart = false; short n = 1;
/** * First the cursor is moved to start without expanding * (must be collapsed), and then it's expanded to the * whole text (must not be collapsed). <p> * * Has <b>OK</b> status if in the first case method * <code>isCollapsed</code> returns <code>true</code>, * and in the second <code>false</code>
*/ publicvoid _isCollapsed(){ boolean bCol = false;
oObj.gotoStart(false);
bCol = oObj.isCollapsed();
oObj.gotoEnd(true);
bCol &= !oObj.isCollapsed() ;
tRes.tested("isCollapsed()", bCol );
}
/** * Restores the text of the component to the * state it was before this interface test.
*/
@Override publicvoid after() {
oObj.gotoStart(false);
oObj.gotoEnd(true);
oObj.setString(oldText) ;
}
} // finish class _XTextCursor
Messung V0.5
¤ Dauer der Verarbeitung: 0.24 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.