|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList
aspose.pdf.RadioButtons
public class RadioButtons
Represents a collection of RadioButton
objects.
Field Summary |
---|
Fields inherited from class java.util.AbstractList |
---|
modCount |
Constructor Summary | |
---|---|
RadioButtons()
Initializes a new instance of the RadioButton class. |
Method Summary | |
---|---|
RadioButton |
add()
Initializes a new instance of the RadioButton class and add it
to the RadioButtons |
void |
add(RadioButton button)
Adds a new RadioButton object into the collection. |
RadioButton |
getRadioButton(int index)
Gets a RadioButton object from the collection according to RadioButton index. |
RadioButton |
getRadioButton(java.lang.String buttonID)
Gets a RadioButton object from the collection according to RadioButton ID. |
int |
indexOf(RadioButton button)
Gets the index of a specified section in the collection. |
void |
insert(int index,
RadioButton button)
Inserts a new RadioButton object into the collection at specified position. |
void |
insert(RadioButton buttonToInsertAfter,
RadioButton newButton)
Inserts a new RadioButton object into the collection
after specified RadioButton object. |
void |
remove(RadioButton button)
Removes a RadioButton object from the collection. |
void |
setRadioButton(int index,
RadioButton value)
Sets a RadioButton object from the collection according to RadioButton index. |
void |
setRadioButton(java.lang.String buttonID,
RadioButton value)
Sets a RadioButton object from the collection according to RadioButton ID. |
Methods inherited from class java.util.ArrayList |
---|
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, remove, remove, removeRange, set, size, toArray, toArray, trimToSize |
Methods inherited from class java.util.AbstractList |
---|
equals, hashCode, iterator, listIterator, listIterator, subList |
Methods inherited from class java.util.AbstractCollection |
---|
containsAll, removeAll, retainAll, toString |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.util.List |
---|
containsAll, equals, hashCode, iterator, listIterator, listIterator, removeAll, retainAll, subList |
Constructor Detail |
---|
public RadioButtons()
RadioButton
class.
Method Detail |
---|
public void add(RadioButton button)
RadioButton
object into the collection.
public RadioButton add()
RadioButton
class and add it
to the RadioButtons
public void remove(RadioButton button)
RadioButton
object from the collection.
button
- The RadioButton
> object to be removed.public void insert(int index, RadioButton button)
RadioButton
object into the collection at specified position.
index
- The zero-based index at which RadioButton
object should be
inserted.button
- The RadioButton
object to be inserted.public void insert(RadioButton buttonToInsertAfter, RadioButton newButton)
RadioButton
object into the collection
after specified RadioButton object.
buttonToInsertAfter
- The RadioButton
object to insert after.newButton
- The RadioButton
object to be inserted.public int indexOf(RadioButton button)
button
- The specified section.
public RadioButton getRadioButton(int index)
RadioButton
object from the collection according to RadioButton index.
public void setRadioButton(int index, RadioButton value)
RadioButton
object from the collection according to RadioButton index.
index
- value
- public RadioButton getRadioButton(java.lang.String buttonID)
RadioButton
object from the collection according to RadioButton ID.
public void setRadioButton(java.lang.String buttonID, RadioButton value)
RadioButton
object from the collection according to RadioButton ID.
buttonID
- value
-
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |