com.aspose.slides
Class CommentAuthorsEx

java.lang.Object
  extended by com.aspose.slides.CommentAuthorsEx
Direct Known Subclasses:
CommentAuthorExCollection

Deprecated.

@Deprecated
public class CommentAuthorsEx
extends java.lang.Object

Represents a collection of comment authors.


Method Summary
 CommentAuthorEx addAuthor(java.lang.String name, java.lang.String initials)
          Deprecated.  Add new author at the end of a collection.
 CommentAuthorEx[] findByName(java.lang.String name)
          Deprecated.  Find author in a collection by name.
 CommentAuthorEx[] findByNameAndInitials(java.lang.String name, java.lang.String initials)
          Deprecated.  Find author in a collection by name and initials.
 CommentAuthorEx get_Item(int index)
          Deprecated.  Gets the element at the specified index.
 int getCount()
          Deprecated.  Gets the number of elements actually contained in the collection.
 com.aspose.ms.System.Collections.IEnumerator<CommentAuthorEx> iterator()
          Deprecated.  Returns an enumerator for the entire collection.
 CommentAuthorEx[] toArray()
          Deprecated.  Creates and returns an array with all authors.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getCount

public int getCount()
Deprecated. 

Gets the number of elements actually contained in the collection. Read-only int.


get_Item

public CommentAuthorEx get_Item(int index)
Deprecated. 

Gets the element at the specified index. Read-only ShapeEx.


addAuthor

public CommentAuthorEx addAuthor(java.lang.String name,
                                 java.lang.String initials)
Deprecated. 

Add new author at the end of a collection.

Parameters:
name - Name of a new author.
initials - Initials of a new author.
Returns:

toArray

public CommentAuthorEx[] toArray()
Deprecated. 

Creates and returns an array with all authors.

Returns:
Array of CommentEx

findByName

public CommentAuthorEx[] findByName(java.lang.String name)
Deprecated. 

Find author in a collection by name.

Parameters:
name - Name of an author to find.
Returns:
Author or null.

findByNameAndInitials

public CommentAuthorEx[] findByNameAndInitials(java.lang.String name,
                                               java.lang.String initials)
Deprecated. 

Find author in a collection by name and initials.

Parameters:
name - Name of an author to find.
initials - Initials of an author to find.
Returns:
Author or null.

iterator

public com.aspose.ms.System.Collections.IEnumerator<CommentAuthorEx> iterator()
Deprecated. 

Returns an enumerator for the entire collection.

Returns:
An IEnumerator for the entire collection.