Examples of FixationLine


Examples of de.dfki.km.text20.services.evaluators.gaze.listenertypes.fixationline.FixationLine

     * Dispatches the new event to the listener.
     *
     * @param type
     */
    private void dispatch(final FixationLineEventType type) {
        final FixationLine line = this.currentFixationLine;

        final long time = FixationLineHandler4.this.currentTime;

        callListener(new FixationLineEvent() {

View Full Code Here

Examples of de.dfki.km.text20.services.evaluators.gaze.listenertypes.fixationline.FixationLine

        // if (this.pseudorenderer != null) {
        //    if (!this.pseudorenderer.getStatus().contains(PseudorendererStatus.VISIBLE))
        //        return;
        // }

        final FixationLine fl = event.getFixationLine();
        final FixationLineUtil flu = new FixationLineUtil(fl);

        //
        // If the fixation line was started, pick an appropriate line of text
        //
View Full Code Here

Examples of de.dfki.km.text20.services.evaluators.gaze.listenertypes.fixationline.FixationLine

        // If the element is not visible, don't do anything
        if (!this.pseudorenderer.getStatus().contains(PseudorendererStatus.VISIBLE))
            return;

        for (final String h : handler) {
            final FixationLine fixationLine = event.getFixationLine();
            final FixationLineUtil fixationLineUtil = new FixationLineUtil(fixationLine);
            final Rectangle r = fixationLineUtil.getRectangle();

            System.out.println("PERUSAL LISTENER CURRENTLY DAMAGED!");
View Full Code Here

Examples of de.dfki.km.text20.services.evaluators.gaze.listenertypes.fixationline.FixationLine

            return;

        if (event.getEventType() != FixationLineEventType.FIXATION_LINE_CONTINUED)
            return;

        final FixationLine fixationLine = event.getFixationLine();
        final List<Fixation> fixations = fixationLine.getFixations();

        final int size = fixations.size();

        if (size < 2) return;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.