All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.gwt.xml.client.CharacterData Maven / Gradle / Ivy

There is a newer version: 2.10.0
Show newest version
/*
 * Copyright 2008 Google Inc.
 * 
 * Licensed 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
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */
package com.google.gwt.xml.client;

/*
 * Implementation notes: Opera has a length limit of 32k on any CharacterData
 * nodes.
 */

/**
 * This interface describes CharacterData XML nodes. These can be
 * either Text, CDATASection or
 * Comment nodes.
 */
public interface CharacterData extends Node {
  /**
   * This method appends data to the data in this
   * CharacterData.
   * 
   * @param appendedData the data to be appended to the end
   */
  void appendData(String appendedData);

  /**
   * This method deletes data, starting at offset, and deleting
   * count characters.
   * 
   * @param offset how far from the beginning to start deleting
   * @param count how many characters to delete
   */
  void deleteData(int offset, int count);

  /**
   * This method retrieves the data.
   * 
   * @return the data of this CharacterData
   */
  String getData();

  /**
   * This method retrieves the length of the data.
   * 
   * @return the length of the data contained in this CharacterData
   */
  int getLength();

  /**
   * This method inserts data at the specified offset.
   * 
   * @param offset how far from the beginning to start inserting
   * @param insertedData the data to be inserted
   */
  void insertData(int offset, String insertedData);

  /**
   * This method replaces the substring of data indicated by offset
   * and count with replacementData.
   * 
   * @param offset how far from the beginning to start the replacement
   * @param replacementData the data that will replace the deleted data
   * @param count how many characters to delete before inserting
   *          replacementData
   */
  void replaceData(int offset, int count, String replacementData);

  /**
   * This method sets the data to data.
   * 
   * @param data the new data
   */
  void setData(String data);

  /**
   * This method gets a substring of the character data.
   * 
   * @param offset the place to start the substring
   * @param count how many characters to return
   * @return the specified substring
   */
  String substringData(int offset, int count);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy