You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdesdk/umbrello/umbrello/codegenerators/javaclassifiercodedocument.h

112 lines
3.0 KiB

/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* copyright (C) 2004-2006 *
* Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
***************************************************************************/
/* This code generated by:
* Author : thomas
* Date : Mon Jun 23 2003
*/
#ifndef JAVACLASSIFIERCODEDOCUMENT_H
#define JAVACLASSIFIERCODEDOCUMENT_H
#include <tqstring.h>
#include "../codeclassfieldlist.h"
#include "../classifiercodedocument.h"
#include "../classifier.h"
#include "../hierarchicalcodeblock.h"
#include "classifierinfo.h"
#include "javacodeclassfield.h"
#include "javacodeoperation.h"
class JavaClassDeclarationBlock;
class JavaCodeGenerationPolicy;
/**
* class JavaClassifierCodeDocument
* A Java UMLClassifier Code Document.
*/
class JavaClassifierCodeDocument : public ClassifierCodeDocument
{
TQ_OBJECT
public:
// Constructors/Destructors
//
/**
* Constructor
*/
JavaClassifierCodeDocument (UMLClassifier * classifier);
/**
* Empty Destructor
*/
virtual ~JavaClassifierCodeDocument ( );
/**
* Get the dialog widget which allows user interaction with the object parameters.
* @return CodeDocumentDialog
*/
//CodeDocumentDialog getDialog ( );
TQString scopeToJavaDecl(Uml::Visibility scope);
// Make it easier on ourselves
JavaCodeGenerationPolicy * getJavaPolicy();
TQString getJavaClassName (const TQString &name);
TQString getPath();
/** add a code operation to this java classifier code document.
* @return bool which is true IF the code operation was added successfully
*/
bool addCodeOperation (CodeOperation * op );
protected:
// reset/clear our inventory of textblocks in this document
void resetTextBlocks();
/**
* need to overwrite this for java since we need to pick up the
* java class declaration block.
*/
virtual void loadChildTextBlocksFromNode ( TQDomElement & root);
void addOrUpdateCodeClassFieldMethodsInCodeBlock(CodeClassFieldList &list, JavaClassDeclarationBlock * codeBlock);
bool forceDoc ();
void updateContent();
private:
JavaClassDeclarationBlock * classDeclCodeBlock;
HierarchicalCodeBlock * constructorBlock;
HierarchicalCodeBlock * operationsBlock;
ClassifierInfo * info;
void init ( );
JavaClassDeclarationBlock * getClassDecl();
};
#endif // JAVACLASSIFIERCODEDOCUMENT_H