Regenerated again, now clases are sorted by code, and with synonyms after

the primary name.
This commit is contained in:
Jack Jansen 2003-03-30 22:41:53 +00:00
parent 2dc16f2a1e
commit 068a1e208f
29 changed files with 8887 additions and 2191 deletions

View file

@ -354,26 +354,6 @@ class version(aetools.NProperty):
applications = application
class color(aetools.ComponentItem):
"""color - A color. """
want = 'colr'
colors = color
class document(aetools.ComponentItem):
"""document - A document. """
want = 'docu'
class modified(aetools.NProperty):
"""modified - Has the document been modified since the last save? """
which = 'imod'
want = 'bool'
class path(aetools.NProperty):
"""path - The document's path. """
which = 'ppth'
want = 'utxt'
documents = document
class item(aetools.ComponentItem):
"""item - A scriptable object. """
want = 'cobj'
@ -388,6 +368,12 @@ class properties(aetools.NProperty):
items = item
class color(aetools.ComponentItem):
"""color - A color. """
want = 'colr'
colors = color
class window(aetools.ComponentItem):
"""window - A window. """
want = 'cwin'
@ -449,6 +435,20 @@ class zoomed(aetools.NProperty):
want = 'bool'
windows = window
class document(aetools.ComponentItem):
"""document - A document. """
want = 'docu'
class modified(aetools.NProperty):
"""modified - Has the document been modified since the last save? """
which = 'imod'
want = 'bool'
class path(aetools.NProperty):
"""path - The document's path. """
which = 'ppth'
want = 'utxt'
documents = document
application._superclassnames = ['item']
application._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
@ -460,21 +460,6 @@ application._privelemdict = {
'document' : document,
'window' : window,
}
color._superclassnames = ['item']
color._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
}
color._privelemdict = {
}
document._superclassnames = ['item']
document._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'modified' : modified,
'name' : name,
'path' : path,
}
document._privelemdict = {
}
item._superclassnames = []
item._privpropdict = {
'class_' : class_,
@ -482,6 +467,12 @@ item._privpropdict = {
}
item._privelemdict = {
}
color._superclassnames = ['item']
color._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
}
color._privelemdict = {
}
window._superclassnames = ['item']
window._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
@ -503,6 +494,15 @@ window._privpropdict = {
}
window._privelemdict = {
}
document._superclassnames = ['item']
document._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'modified' : modified,
'name' : name,
'path' : path,
}
document._privelemdict = {
}
class _3c_(aetools.NComparison):
"""< - Less than """
class _3d_(aetools.NComparison):