Adding license documentation to interface class docblocks.
This commit is contained in:
@@ -11,6 +11,8 @@ from Base.Metadata import constmethod, export
|
||||
)
|
||||
class CenterLine(PyObjectBase):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
CenterLine specifies additional mark up edges in a View
|
||||
"""
|
||||
|
||||
|
||||
@@ -12,6 +12,8 @@ from Base.Metadata import export
|
||||
)
|
||||
class CosmeticEdge(PyObjectBase):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
CosmeticEdge specifies an extra (cosmetic) edge in Views
|
||||
"""
|
||||
|
||||
|
||||
@@ -8,5 +8,7 @@ from App.DocumentObjectExtension import DocumentObjectExtension
|
||||
)
|
||||
class CosmeticExtension(DocumentObjectExtension):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
This object represents cosmetic features for a DrawViewPart.
|
||||
"""
|
||||
|
||||
@@ -11,6 +11,8 @@ from Base.Metadata import constmethod, export
|
||||
)
|
||||
class CosmeticVertex(PyObjectBase):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
CosmeticVertex specifies an extra (cosmetic) vertex in Views
|
||||
"""
|
||||
|
||||
|
||||
@@ -10,6 +10,8 @@ from TechDraw.DrawViewPart import DrawViewPart
|
||||
)
|
||||
class DrawBrokenView(DrawViewPart):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for creating and manipulating Technical Drawing broken views
|
||||
"""
|
||||
|
||||
|
||||
@@ -9,6 +9,8 @@ from App.DocumentObject import DocumentObject
|
||||
)
|
||||
class DrawGeomHatch(DocumentObject):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for creating and manipulating Technical Drawing GeomHatch areas
|
||||
"""
|
||||
|
||||
|
||||
@@ -8,6 +8,8 @@ from App.DocumentObject import DocumentObject
|
||||
)
|
||||
class DrawHatch(DocumentObject):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for creating and manipulating Technical Drawing Hatch areas
|
||||
"""
|
||||
|
||||
|
||||
@@ -8,5 +8,7 @@ from DrawView import DrawView
|
||||
)
|
||||
class DrawLeaderLine(DrawView):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for adding leaders to Technical Drawings
|
||||
"""
|
||||
|
||||
@@ -9,6 +9,8 @@ from App.DocumentObject import DocumentObject
|
||||
)
|
||||
class DrawPage(DocumentObject):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for creating and manipulating Technical Drawing Pages
|
||||
"""
|
||||
|
||||
|
||||
@@ -10,6 +10,8 @@ from DrawTemplate import DrawTemplate
|
||||
)
|
||||
class DrawParametricTemplate(DrawTemplate):
|
||||
"""
|
||||
Author: Luke Parry (l.parry@warwick.ac.uk)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for creating and manipulating Technical Drawing Templates
|
||||
"""
|
||||
|
||||
|
||||
@@ -10,6 +10,8 @@ from TechDraw.DrawViewCollection import DrawViewCollection
|
||||
)
|
||||
class DrawProjGroup(DrawViewCollection):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for creating and manipulating Technical Drawing Projection Groups
|
||||
"""
|
||||
|
||||
|
||||
@@ -10,6 +10,8 @@ from TechDraw.DrawViewPart import DrawViewPart
|
||||
)
|
||||
class DrawProjGroupItem(DrawViewPart):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for creating and manipulating component Views Technical Drawing Projection Groups
|
||||
"""
|
||||
|
||||
|
||||
@@ -8,5 +8,7 @@ from TechDraw.DrawView import DrawView
|
||||
)
|
||||
class DrawRichAnno(DrawView):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for adding rich annotation blocks to Technical Drawings
|
||||
"""
|
||||
|
||||
@@ -10,6 +10,8 @@ from DrawTemplate import DrawTemplate
|
||||
)
|
||||
class DrawSVGTemplate(DrawTemplate):
|
||||
"""
|
||||
Author: Luke Parry (l.parry@warwick.ac.uk)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for creating and manipulating Technical Drawing SVG Templates
|
||||
"""
|
||||
|
||||
|
||||
@@ -8,5 +8,7 @@ from App.DocumentObject import DocumentObject
|
||||
)
|
||||
class DrawTemplate(DocumentObject):
|
||||
"""
|
||||
Author: Luke Parry (l.parry@warwick.ac.uk)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for creating and manipulating Technical Drawing Templates
|
||||
"""
|
||||
|
||||
@@ -8,5 +8,7 @@ from App.DocumentObject import DocumentObject
|
||||
)
|
||||
class DrawTile(DocumentObject):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for adding tiles to leader lines
|
||||
"""
|
||||
|
||||
@@ -8,5 +8,7 @@ from TechDraw.DrawTile import DrawTile
|
||||
)
|
||||
class DrawTileWeld(DrawTile):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for adding welding tiles to leader lines
|
||||
"""
|
||||
|
||||
@@ -10,6 +10,8 @@ from App.DocumentObject import DocumentObject
|
||||
)
|
||||
class DrawView(DocumentObject):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for creating and manipulating Technical Drawing Views
|
||||
"""
|
||||
|
||||
|
||||
@@ -8,5 +8,7 @@ from TechDraw.Drawview import DrawView
|
||||
)
|
||||
class DrawViewAnnotation(DrawView):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for creating and manipulating Technical Drawing Annotation Views
|
||||
"""
|
||||
|
||||
@@ -10,6 +10,8 @@ from TechDraw.DrawView import DrawView
|
||||
)
|
||||
class DrawViewClip(DrawView):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for creating and manipulating Technical Drawing Clip Views
|
||||
"""
|
||||
|
||||
|
||||
@@ -10,6 +10,8 @@ from TechDraw.DrawView import DrawView
|
||||
)
|
||||
class DrawViewCollection(DrawView):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for creating and manipulating Technical Drawing View Collections
|
||||
"""
|
||||
|
||||
|
||||
@@ -10,6 +10,8 @@ from TechDraw.DrawViewDimension import DrawViewDimension
|
||||
)
|
||||
class DrawViewDimExtent(DrawViewDimension):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for creating and manipulating Technical Drawing DimExtents
|
||||
"""
|
||||
|
||||
|
||||
@@ -10,6 +10,8 @@ from TechDraw.DrawView import DrawView
|
||||
)
|
||||
class DrawViewDimension(DrawView):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for creating and manipulating Technical Drawing Dimensions
|
||||
"""
|
||||
|
||||
|
||||
@@ -10,6 +10,8 @@ from TechDraw.rawView import DrawView
|
||||
)
|
||||
class DrawViewPart(DrawView):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for creating and manipulating Technical Drawing Part Views
|
||||
"""
|
||||
|
||||
|
||||
@@ -10,6 +10,8 @@ from TechDraw.DrawView import DrawView
|
||||
)
|
||||
class DrawViewSymbol(DrawView):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for creating and manipulating Drawing SVG Symbol Views
|
||||
"""
|
||||
|
||||
|
||||
@@ -8,5 +8,7 @@ from TechDraw.DrawView import DrawView
|
||||
)
|
||||
class DrawWeldSymbol(DrawView):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
Feature for adding welding tiles to leader lines
|
||||
"""
|
||||
|
||||
@@ -11,6 +11,8 @@ from Base.Metadata import constmethod, export
|
||||
)
|
||||
class GeomFormat(PyObjectBase):
|
||||
"""
|
||||
Author: WandererFan (wandererfan@gmail.com)
|
||||
License: LGPL-2.1-or-later
|
||||
GeomFormat specifies appearance parameters for TechDraw Geometry objects
|
||||
"""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user