@@ -89,7 +89,7 @@ def __init__(self, property_type=None):
8989 """Constructor of Generic Instruction receives the parameters bellow.
9090
9191 Args:
92- type(~pyof.v0x04.controller2switch.common.TableFeaturePropType ):
92+ type(|TableFeaturePropType_v0x04| ):
9393 Property Type value of this instance.
9494 """
9595 super ().__init__ ()
@@ -134,8 +134,8 @@ class InstructionsProperty(Property):
134134 """Instructions property.
135135
136136 This class represents Property with the following types:
137- OFPTFPT_INSTRUCTIONS
138- OFPTFPT_INSTRUCTIONS_MISS
137+ - OFPTFPT_INSTRUCTIONS
138+ - OFPTFPT_INSTRUCTIONS_MISS
139139 """
140140
141141 instruction_ids = ListOfInstruction ()
@@ -145,9 +145,9 @@ def __init__(self, property_type=TableFeaturePropType.OFPTFPT_INSTRUCTIONS,
145145 """Constructor of NextTablesProperty receives the parameters bellow.
146146
147147 Args:
148- type(~pyof.v0x04.controller2switch.common.TableFeaturePropType ):
148+ type(|TableFeaturePropType_v0x04| ):
149149 Property Type value of this instance.
150- next_table_ids(:class:`ListOfInstruction` ):
150+ next_table_ids(|ListOfInstruction_v0x04| ):
151151 List of InstructionGotoTable instances.
152152 """
153153 super ().__init__ (property_type = property_type )
@@ -159,8 +159,8 @@ class NextTablesProperty(Property):
159159 """Next Tables Property.
160160
161161 This class represents Property with the following types:
162- OFPTFPT_NEXT_TABLES
163- OFPTFPT_NEXT_TABLES_MISS
162+ - OFPTFPT_NEXT_TABLES
163+ - OFPTFPT_NEXT_TABLES_MISS
164164 """
165165
166166 next_table_ids = ListOfInstruction ()
@@ -170,10 +170,9 @@ def __init__(self, property_type=TableFeaturePropType.OFPTFPT_NEXT_TABLES,
170170 """Constructor of NextTablesProperty receives the parameters bellow.
171171
172172 Args:
173- type(~pyof.v0x04.controller2switch.common.TableFeaturePropType ):
173+ type(|TableFeaturePropType_v0x04| ):
174174 Property Type value of this instance.
175- next_table_ids \
176- (:class:`~pyof.v0x04.common.flow_instructions.ListOfInstruction`):
175+ next_table_ids (|ListOfInstruction_v0x04|):
177176 List of InstructionGotoTable instances.
178177 """
179178 super ().__init__ (property_type )
@@ -185,10 +184,10 @@ class ActionsProperty(Property):
185184 """Actions Property.
186185
187186 This class represents Property with the following type:
188- OFPTFPT_WRITE_ACTIONS
189- OFPTFPT_WRITE_ACTIONS_MISS
190- OFPTFPT_APPLY_ACTIONS
191- OFPTFPT_APPLY_ACTIONS_MISS
187+ - OFPTFPT_WRITE_ACTIONS
188+ - OFPTFPT_WRITE_ACTIONS_MISS
189+ - OFPTFPT_APPLY_ACTIONS
190+ - OFPTFPT_APPLY_ACTIONS_MISS
192191 """
193192
194193 action_ids = ListOfActions ()
@@ -199,10 +198,10 @@ def __init__(self,
199198 """Constructor of ActionsProperty receives the parameters bellow.
200199
201200 Args:
202- type(~pyof.v0x04.controller2switch.common.TableFeaturePropType ):
201+ type(|TableFeaturePropType_v0x04| ):
203202 Property Type value of this instance.
204- action_ids(:class:`~pyof.v0x04.common.ListOfActions`): List of
205- Action instances.
203+ action_ids(|ListOfActions_v0x04|):
204+ List of Action instances.
206205 """
207206 super ().__init__ (property_type )
208207 self .action_ids = action_ids if action_ids else ListOfActions ()
@@ -213,12 +212,12 @@ class OxmProperty(Property):
213212 """"Match, Wildcard or Set-Field property.
214213
215214 This class represents Property with the following types:
216- OFPTFPT_MATCH
217- OFPTFPT_WILDCARDS
218- OFPTFPT_WRITE_SETFIELD
219- OFPTFPT_WRITE_SETFIELD_MISS
220- OFPTFPT_APPLY_SETFIELD
221- OFPTFPT_APPLY_SETFIELD_MISS
215+ - OFPTFPT_MATCH
216+ - OFPTFPT_WILDCARDS
217+ - OFPTFPT_WRITE_SETFIELD
218+ - OFPTFPT_WRITE_SETFIELD_MISS
219+ - OFPTFPT_APPLY_SETFIELD
220+ - OFPTFPT_APPLY_SETFIELD_MISS
222221 """
223222
224223 oxm_ids = ListOfOxmHeader ()
@@ -228,9 +227,9 @@ def __init__(self, property_type=TableFeaturePropType.OFPTFPT_MATCH,
228227 """Constructor of OxmProperty receives the parameters bellow.
229228
230229 Args:
231- type(~pyof.v0x04.controller2switch.common.TableFeaturePropType ):
230+ type(|TableFeaturePropType_v0x04| ):
232231 Property Type value of this instance.
233- oxm_ids(~pyof.v0x04.common.flow_match.ListOfOxmHeader ):
232+ oxm_ids(|ListOfOxmHeader_v0x04| ):
234233 List of OxmHeader instances.
235234 """
236235 super ().__init__ (property_type )
@@ -248,8 +247,7 @@ def __init__(self, items=None):
248247 """The constructor just assigns parameters to object attributes.
249248
250249 Args:
251- items (~pyof.v0x04.controller2switch.common.Property):
252- Instance or a list of instances.
250+ items (|Property_v0x04|): Instance or a list of instances.
253251 """
254252 super ().__init__ (pyof_class = Property , items = items )
255253
@@ -301,8 +299,7 @@ def __init__(self, table_id=Table.OFPTT_ALL, name="",
301299 config(int): Field reseved for future use.
302300 max_entries(int): Describe the maximum number of flow entries that
303301 can be inserted into that table.
304- properties(~pyof.v0x04.controller2switch.common.Property):
305- List of Property intances.
302+ properties(Property_v0x04): List of Property intances.
306303 """
307304 super ().__init__ ()
308305 self .table_id = table_id
0 commit comments