[Uml-devel] [Bug 130926] New: java import - static not handled correctly
JP Fournier
jfournier121 at rogers.com
Sun Jul 16 17:06:35 UTC 2006
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=130926
Summary: java import - static not handled correctly
Product: umbrello
Version: unspecified
Platform: Slackware Packages
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: NOR
Component: general
AssignedTo: umbrello-devel.kde.org
ReportedBy: jfournier121 rogers com
Version: svn - 562901 (using KDE KDE 3.5.0)
Installed from: Slackware Packages
Compiler: gcc 3.4.4
OS: Linux
steps to reproduce:
- with recent svn version of umbrello import the class below
- drag to class diagram
problems:
- constructor is tagged as static
- static field VALUE is not tagged as static
package test;
abstract class StaticAbstract extends Object {
private int privateInt;
long packageInt;
public static final String VALUE = "aString";
StaticAbstract() {
}
protected StaticAbstract(int arg ) {
}
abstract String abstractMethod(String arg) ;
private static int getInt() {
return 7;
}
public String toString() {
return VALUE;
}
}
More information about the umbrello-devel
mailing list