Class RepeatT
java.lang.Object
org.bremersee.garmin.workout.v1.model.AbstractStepT
org.bremersee.garmin.workout.v1.model.RepeatT
- All Implemented Interfaces:
Serializable
Java class for Repeat_t complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Repeat_t">
<complexContent>
<extension base="{http://www.garmin.com/xmlschemas/WorkoutDatabase/v1}AbstractStep_t">
<sequence>
<element name="Repetitions" type="{http://www.garmin.com/xmlschemas/WorkoutDatabase/v1}Repetitions_t"/>
<element name="Child" type="{http://www.garmin.com/xmlschemas/WorkoutDatabase/v1}AbstractStep_t" maxOccurs="unbounded"/>
</sequence>
</extension>
</complexContent>
</complexType>
- See Also:
-
Field Summary
FieldsFields inherited from class org.bremersee.garmin.workout.v1.model.AbstractStepT
stepId -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the children property.intGets the value of the repetitions property.voidsetRepetitions(int value) Sets the value of the repetitions property.Methods inherited from class org.bremersee.garmin.workout.v1.model.AbstractStepT
getStepId, setStepId
-
Field Details
-
repetitions
protected int repetitions -
children
-
-
Constructor Details
-
RepeatT
public RepeatT()
-
-
Method Details
-
getRepetitions
public int getRepetitions()Gets the value of the repetitions property. -
setRepetitions
public void setRepetitions(int value) Sets the value of the repetitions property. -
getchildren
Gets the value of the children property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the children property.For example, to add a new item, do as follows:
getchildren().add(newItem);Objects of the following type(s) are allowed in the list
AbstractStepT- Returns:
- The value of the children property.
-