| umbrello 25.07.90
    Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology | 
#include <valaimport.h>
 
  
| Public Member Functions | |
| ValaImport (CodeImpThread *thread=nullptr) | |
| virtual | ~ValaImport () | 
| QString | fileExtension () | 
| Public Member Functions inherited from CsValaImportBase | |
| CsValaImportBase (CodeImpThread *thread=nullptr) | |
| virtual | ~CsValaImportBase () | 
| Public Member Functions inherited from JavaCsValaImportBase | |
| JavaCsValaImportBase (CodeImpThread *thread=nullptr) | |
| virtual | ~JavaCsValaImportBase () | 
| Public Member Functions inherited from NativeImportBase | |
| NativeImportBase (const QString &singleLineCommentIntro, CodeImpThread *thread=nullptr) | |
| virtual | ~NativeImportBase () | 
| Public Member Functions inherited from ClassImport | |
| ClassImport (CodeImpThread *thread=nullptr) | |
| virtual | ~ClassImport () | 
| bool | importFiles (const QStringList &fileNames) | 
| bool | importFile (const QString &fileName) | 
| void | setRootPath (const QString &path) | 
| bool | enabled () const | 
| Protected Member Functions | |
| void | spawnImport (const QString &file) | 
| Protected Member Functions inherited from CsValaImportBase | |
| bool | parseStmt () | 
| bool | preprocess (QString &line) | 
| Protected Member Functions inherited from JavaCsValaImportBase | |
| void | initVars () | 
| void | fillSource (const QString &word) | 
| bool | parseFile (const QString &filename) | 
| UMLObject * | resolveClass (const QString &className) | 
| QString | joinTypename (const QString &typeName) | 
| bool | parseClassDeclaration (const QString &keyword) | 
| bool | parseEnumDeclaration () | 
| Protected Member Functions inherited from NativeImportBase | |
| void | initialize () | 
| void | setMultiLineComment (const QString &intro, const QString &end) | 
| void | setMultiLineAltComment (const QString &intro, const QString &end) | 
| void | scan (const QString &line) | 
| virtual QStringList | split (const QString &line) | 
| void | skipStmt (const QString &until=QStringLiteral(";")) | 
| bool | skipToClosing (QChar opener) | 
| QString | current () | 
| QString | lookAhead () | 
| virtual QString | advance () | 
| void | pushScope (UMLPackage *p) | 
| UMLPackage * | popScope () | 
| UMLPackage * | currentScope () | 
| int | scopeIndex () | 
| Protected Member Functions inherited from ClassImport | |
| virtual void | initPerFile () | 
| void | log (const QString &file, const QString &text) | 
| void | log (const QString &text) | 
| Additional Inherited Members | |
| Static Public Member Functions inherited from ClassImport | |
| static ClassImport * | createImporterByFileExt (const QString &fileName, CodeImpThread *thread=nullptr) | 
| Static Protected Member Functions inherited from JavaCsValaImportBase | |
| static UMLObject * | findObject (const QString &name, UMLPackage *parentPkg) | 
| Protected Attributes inherited from JavaCsValaImportBase | |
| bool | m_isStatic | 
| static flag for the member var or method | |
| QString | m_currentFileName | 
| current filename being parsed | |
| QString | m_currentPackage | 
| current package of the file being parsed | |
| QStringList | m_imports | 
| imports included in the current file | |
| Uml::Visibility::Enum | m_defaultCurrentAccess | 
| current visibility for when the visibility is absent | |
| Uml::ProgrammingLanguage::Enum | m_language | 
| Protected Attributes inherited from NativeImportBase | |
| QString | m_singleLineCommentIntro | 
| start token of a single line comment | |
| QStringList | m_source | 
| the scanned lexemes | |
| int | m_srcIndex | 
| used for indexing m_source | |
| QList< UMLPackage * > | m_scope | 
| stack of scopes for use by the specific importer | |
| UMLClassifier * | m_klass | 
| class currently being processed | |
| Uml::Visibility::Enum | m_currentAccess | 
| current access (public/protected/private) | |
| QString | m_comment | 
| intermediate accumulator for comment text | |
| bool | m_inComment | 
| bool | m_isAbstract | 
| accumulator for abstractness | |
| QString | m_multiLineCommentIntro | 
| multi line comment delimiter intro | |
| QString | m_multiLineCommentEnd | 
| multi line comment delimiter end | |
| QString | m_multiLineAltCommentIntro | 
| QString | m_multiLineAltCommentEnd | 
| Protected Attributes inherited from ClassImport | |
| CodeImpThread * | m_thread | 
| thread in which the work of importing is done | |
| bool | m_enabled | 
| state of importer | |
| QString | m_rootPath | 
| root path of import | |
| Static Protected Attributes inherited from JavaCsValaImportBase | |
| static QStringList | s_filesAlreadyParsed | 
| static int | s_parseDepth = 0 | 
| Static Protected Attributes inherited from NativeImportBase | |
| static QStringList | m_parsedFiles | 
Derivation of CsValaImportBase for Vala
| 
 | explicit | 
Constructor
| 
 | virtual | 
Destructor
| 
 | virtual | 
Reimplementation of method from CsValaImportBase
Implements JavaCsValaImportBase.
| 
 | protectedvirtual | 
Spawn off an import of the specified file.
| file | the specified file | 
Implements JavaCsValaImportBase.