@@ -89,7 +89,8 @@ def __init__(self, property_type=None):
8989 """Constructor of Generic Instruction receives the parameters bellow.
9090
9191 Args:
92- type(TableFeaturePropType): Property Type value of this instance.
92+ type(~pyof.v0x04.controller2switch.common.TableFeaturePropType):
93+ Property Type value of this instance.
9394 """
9495 super ().__init__ ()
9596 self .property_type = property_type
@@ -144,7 +145,8 @@ def __init__(self, property_type=TableFeaturePropType.OFPTFPT_INSTRUCTIONS,
144145 """Constructor of InstructionProperty receives the parameters bellow.
145146
146147 Args:
147- type(TableFeaturePropType): Property Type value of this instance.
148+ type(~pyof.v0x04.controller2switch.common.TableFeaturePropType):
149+ Property Type value of this instance.
148150 instruction_ids(ListOfInstruction): List of Instruction instances.
149151 """
150152 super ().__init__ (property_type = property_type )
@@ -167,7 +169,8 @@ def __init__(self, property_type=TableFeaturePropType.OFPTFPT_NEXT_TABLES,
167169 """Constructor of NextTablesProperty receives the parameters bellow.
168170
169171 Args:
170- type(TableFeaturePropType): Property Type value of this instance.
172+ type(~pyof.v0x04.controller2switch.common.TableFeaturePropType):
173+ Property Type value of this instance.
171174 next_table_ids(ListOfInstruction): List of InstructionGotoTable
172175 instances.
173176 """
@@ -194,7 +197,8 @@ def __init__(self,
194197 """Constructor of ActionsProperty receives the parameters bellow.
195198
196199 Args:
197- type(TableFeaturePropType): Property Type value of this instance.
200+ type(~pyof.v0x04.controller2switch.common.TableFeaturePr):
201+ Property Type value of this instance.
198202 action_ids(ListOfActions): List of Action instances.
199203 """
200204 super ().__init__ (property_type )
@@ -221,8 +225,10 @@ def __init__(self, property_type=TableFeaturePropType.OFPTFPT_MATCH,
221225 """Constructor of OxmProperty receives the parameters bellow.
222226
223227 Args:
224- type(TableFeaturePropType): Property Type value of this instance.
225- oxm_ids(ListOfOxmHeader): List of OxmHeader instances.
228+ type(~pyof.v0x04.controller2switch.common.TableFeaturePropType):
229+ Property Type value of this instance.
230+ oxm_ids(~pyof.v0x04.common.flow_match.ListOfOxmHeader):
231+ List of OxmHeader instances.
226232 """
227233 super ().__init__ (property_type )
228234 self .oxm_ids = oxm_ids
@@ -239,7 +245,8 @@ def __init__(self, items=None):
239245 """The constructor just assings parameters to object attributes.
240246
241247 Args:
242- items (Property): Instance or a list of instances.
248+ items (~pyof.v0x04.controller2switch.common.Property):
249+ Instance or a list of instances.
243250 """
244251 super ().__init__ (pyof_class = Property , items = items )
245252
@@ -293,7 +300,8 @@ def __init__(self, table_id=Table.OFPTT_ALL, name="",
293300 config(int): Field reseved for future use.
294301 max_entries(int): Describe the maximum number of flow entries
295302 that can be inserted into that table.
296- properties(ListOfProperty): List of Property intances.
303+ properties(~pyof.v0x04.controller2switch.common.Property):
304+ List of Property intances.
297305 """
298306 super ().__init__ ()
299307 self .table_id = table_id
0 commit comments