Skip to content

Commit a07a3d9

Browse files
author
Pavel Terechshenkov
committed
last_dotnet_version
1 parent 14cbf90 commit a07a3d9

File tree

3,971 files changed

+11550
-12300
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,971 files changed

+11550
-12300
lines changed

english/java/_index.md

Lines changed: 56 additions & 53 deletions
Large diffs are not rendered by default.

english/java/aspose.html.collections/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: com.aspose.html.collections
33
second_title: Aspose.HTML for Java API Reference
44
description: The com.aspose.html.collections package consists of classes to represent store and manipulate nodes and elements
55
type: docs
6-
weight: 20
6+
weight: 50
77
url: /java/com.aspose.html.collections/
88
---
99
The **com.aspose.html.collections** package consists of classes to represent, store and manipulate nodes and elements.

english/java/aspose.html.collections/domtokenlist/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: DOMTokenList Class
33
second_title: Aspose.HTML for Java API Reference
44
description: com.aspose.html.collections.DOMTokenList class. The DOMTokenList class represents a set of space-separated tokens. It is indexed beginning with 0 as with JavaScript Array objects. DOMTokenList is always case-sensitive
55
type: docs
6-
weight: 20
6+
weight: 180
77
url: /java/com.aspose.html.collections/domtokenlist/
88
---
99
## DOMTokenList class
@@ -35,7 +35,7 @@ public class DOMTokenList : DOMObject, IEnumerable<String>
3535
| [replace](../../com.aspose.html.collections/domtokenlist/replace/)(String, String) | Replaces an existing token with a new token. Does nothing if the first token doesn't exist. |
3636
| [supports](../../com.aspose.html.collections/domtokenlist/supports/)(String) | Returns true if a given token is in the associated attribute's supported tokens. |
3737
| [toggle](../../com.aspose.html.collections/domtokenlist/toggle/#toggle)(String) | Removes the token from the list if it exists, or adds the token to the list if it doesn't. |
38-
| [toggle](../../com.aspose.html.collections/domtokenlist/toggle/#toggle_1)(String, bool?) | Removes the token from the list if it exists, or adds the token to the list if it doesn't. |
38+
| [toggle](../../com.aspose.html.collections/domtokenlist/toggle/#toggle_1)(String, bool) | Removes the token from the list if it exists, or adds the token to the list if it doesn't. |
3939

4040
### See Also
4141

english/java/aspose.html.collections/domtokenlist/add/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ public void Add(params String[] tokens)
2121
### See Also
2222

2323
* class [DOMTokenList](../)
24-
* package [com.aspose.html.collections](../../domtokenlist/)
24+
* package [com.aspose.html.collections](../../../com.aspose.html.collections/)
2525
* package [Aspose.HTML](../../../)

english/java/aspose.html.collections/domtokenlist/contains/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ A Boolean, which is true if the calling list contains token, otherwise false.
2525
### See Also
2626

2727
* class [DOMTokenList](../)
28-
* package [com.aspose.html.collections](../../domtokenlist/)
28+
* package [com.aspose.html.collections](../../../com.aspose.html.collections/)
2929
* package [Aspose.HTML](../../../)

english/java/aspose.html.collections/domtokenlist/getenumerator/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ An IEnumerator object that can be used to iterate through the collection.
2121
### See Also
2222

2323
* class [DOMTokenList](../)
24-
* package [com.aspose.html.collections](../../domtokenlist/)
24+
* package [com.aspose.html.collections](../../../com.aspose.html.collections/)
2525
* package [Aspose.HTML](../../../)

english/java/aspose.html.collections/domtokenlist/item/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ url: /java/com.aspose.html.collections/domtokenlist/item/
1111
Returns the item in the list by its index, or null if index is greater than or equal to the list's length.
1212

1313
```java
14-
public String this[ulong index] { get; }
14+
public String this[uint index] { get; }
1515
```
1616

1717
| Parameter | Description |
@@ -25,5 +25,5 @@ A String which represents a token in the list.
2525
### See Also
2626

2727
* class [DOMTokenList](../)
28-
* package [com.aspose.html.collections](../../domtokenlist/)
28+
* package [com.aspose.html.collections](../../../com.aspose.html.collections/)
2929
* package [Aspose.HTML](../../../)

english/java/aspose.html.collections/domtokenlist/length/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ url: /java/com.aspose.html.collections/domtokenlist/length/
1111
Returns an ulong which represents the number of tokens stored in this list.
1212

1313
```java
14-
public ulong Length { get; }
14+
public uint Length { get; }
1515
```
1616

1717
### See Also
1818

1919
* class [DOMTokenList](../)
20-
* package [com.aspose.html.collections](../../domtokenlist/)
20+
* package [com.aspose.html.collections](../../../com.aspose.html.collections/)
2121
* package [Aspose.HTML](../../../)

english/java/aspose.html.collections/domtokenlist/remove/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ public void Remove(params String[] tokens)
2121
### See Also
2222

2323
* class [DOMTokenList](../)
24-
* package [com.aspose.html.collections](../../domtokenlist/)
24+
* package [com.aspose.html.collections](../../../com.aspose.html.collections/)
2525
* package [Aspose.HTML](../../../)

english/java/aspose.html.collections/domtokenlist/replace/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ Boolean `true` if the token was found and replaced, `false` otherwise.
2626
### See Also
2727

2828
* class [DOMTokenList](../)
29-
* package [com.aspose.html.collections](../../domtokenlist/)
29+
* package [com.aspose.html.collections](../../../com.aspose.html.collections/)
3030
* package [Aspose.HTML](../../../)

0 commit comments

Comments
 (0)