com.aspose.slides
Class Tags

java.lang.Object
  extended by com.aspose.slides.Tags

Deprecated.

@Deprecated
public class Tags
extends java.lang.Object

Represents a collection of a tags.


Method Summary
 void add(java.lang.String name, java.lang.String value)
          Deprecated.  Adds a tag with the specified name.
 void clear()
          Deprecated.  Removes all tags.
 boolean contains(java.lang.String name)
          Deprecated.  Determines whether the collection contains a tag with the specific name.
 java.lang.String get(java.lang.String name)
          Deprecated.  Gets and sets the tag associated with a specific name.
 int getCount()
          Deprecated.  Gets the number of tags actually contained in the collection.
 java.lang.String getTagName(int index)
          Deprecated.  Gets the tag name at the specified index of the collection.
 void remove(java.lang.String name)
          Deprecated.  Removes the tag with the specified name from collection.
 void set(java.lang.String name, java.lang.String value)
          Deprecated.  
 
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 tags actually contained in the collection.


get

public java.lang.String get(java.lang.String name)
Deprecated. 

Gets and sets the tag associated with a specific name.


set

public void set(java.lang.String name,
                java.lang.String value)
Deprecated. 

add

public void add(java.lang.String name,
                java.lang.String value)
Deprecated. 

Adds a tag with the specified name.

Parameters:
name - The name of the tag to add.
value - The value of the tag to add.

clear

public void clear()
Deprecated. 

Removes all tags.


contains

public boolean contains(java.lang.String name)
Deprecated. 

Determines whether the collection contains a tag with the specific name.

Parameters:
name - The name of tag to locate in the collection.
Returns:
True if the collection contains a tag with the specified name.

getTagName

public java.lang.String getTagName(int index)
Deprecated. 

Gets the tag name at the specified index of the collection.

Parameters:
index - The zero-based index of the tag name to get.
Returns:
The tag name at the specified index of the collection.

remove

public void remove(java.lang.String name)
Deprecated. 

Removes the tag with the specified name from collection.

Parameters:
name - The name of the tag to remove.