TextSpanSelection.java

  1. /*
  2.  * Copyright 2012 The Apache Software Foundation.
  3.  *
  4.  * Licensed under the Apache License, Version 2.0 (the "License");
  5.  * you may not use this file except in compliance with the License.
  6.  * You may obtain a copy of the License at
  7.  *
  8.  *      http://www.apache.org/licenses/LICENSE-2.0
  9.  *
  10.  * Unless required by applicable law or agreed to in writing, software
  11.  * distributed under the License is distributed on an "AS IS" BASIS,
  12.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.  * See the License for the specific language governing permissions and
  14.  * limitations under the License.
  15.  */
  16. package org.odftoolkit.odfdom.changes;

  17. import java.util.List;
  18. import org.odftoolkit.odfdom.dom.element.text.TextSpanElement;

  19. /** @author svante.schubertATgmail.com */
  20. public class TextSpanSelection extends TextSelection implements Comparable {

  21.   /**
  22.    * Constructor.
  23.    *
  24.    * @param spanElement the spanElement of the Span element.
  25.    * @param startPosition the startPosition of the Span element.
  26.    */
  27.   public TextSpanSelection(TextSpanElement spanElement, List<Integer> startPosition) {
  28.     mSelectionElement = spanElement;
  29.     mStartPosition = startPosition;
  30.   }

  31.   /**
  32.    * Constructor.
  33.    *
  34.    * @param spanElement the spanElement of the Span element.
  35.    * @param startPosition the startPosition of the Span element.
  36.    */
  37.   public TextSpanSelection(
  38.       TextSpanElement spanElement, List<Integer> startPosition, List<Integer> endPosition) {
  39.     mSelectionElement = spanElement;
  40.     mStartPosition = startPosition;
  41.     mEndPosition = endPosition;
  42.   }

  43.   /**
  44.    * Returns the spanElement of the Span element.
  45.    *
  46.    * @return the spanElement of the Span element.
  47.    */
  48.   public TextSpanElement getSpanElement() {
  49.     return (TextSpanElement) mSelectionElement;
  50.   }

  51.   @Override
  52.   public String toString() {
  53.     return mStartPosition.toString()
  54.         + "-URL"
  55.         + mUrl
  56.         + "-"
  57.         + mEndPosition.toString()
  58.         + mSelectionElement.toString()
  59.         + ((TextSpanElement) mSelectionElement).getAutomaticStyle().toString();
  60.   }
  61. }