[umbrello] [Bug 386479] Imported classes are not placeable on diagrams after java import

2018-01-03 Thread Ralf Habacker
https://bugs.kde.org/show_bug.cgi?id=386479

Ralf Habacker  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED
  Latest Commit||https://commits.kde.org/umb
   ||rello/be3b42f9cf186cb24a9fb
   ||3865adc63537dc82444
   Version Fixed In||2.24.1 (KDE Applications
   ||17.12.1)

--- Comment #6 from Ralf Habacker  ---
Git commit be3b42f9cf186cb24a9fb3865adc63537dc82444 by Ralf Habacker.
Committed on 04/01/2018 at 02:50.
Pushed by habacker into branch 'Applications/17.12'.

Complete java import fix

Previous fix was not enough to fix this bug. Importing
exchange/tree/master/network/src/main/java/io/bisq/network from
https://github.com/bisq-network/ not works.
FIXED-IN:2.24.1 (KDE Applications 17.12.1)

M  +11   -2umbrello/codeimport/import_utils.cpp
M  +2-1umbrello/codeimport/import_utils.h
M  +5-2umbrello/codeimport/javaimport.cpp

https://commits.kde.org/umbrello/be3b42f9cf186cb24a9fb3865adc63537dc82444

-- 
You are receiving this mail because:
You are watching all bug changes.

[umbrello] [Bug 386479] Imported classes are not placeable on diagrams after java import

2018-01-03 Thread Ralf Habacker
https://bugs.kde.org/show_bug.cgi?id=386479

--- Comment #5 from Ralf Habacker  ---
Git commit c11df4aa1fd0f182c0c4b0797aa7035303b61eb9 by Ralf Habacker.
Committed on 03/01/2018 at 13:40.
Pushed by habacker into branch 'Applications/17.12'.

Fix implementation of Import_Utils::createUMLObject() parameter
searchInParentPackageOnly

Really limit searching packages to the parent package if specified.
UMLDoc::findUMLObject(), which has been used here before, does not
limit the search to the provided parent package, if specified.

M  +5-2umbrello/codeimport/import_utils.cpp

https://commits.kde.org/umbrello/c11df4aa1fd0f182c0c4b0797aa7035303b61eb9

--- Comment #4 from Ralf Habacker  ---
Git commit 459fe36a6eca91d34becea3ae19fdba3848fbdd8 by Ralf Habacker.
Committed on 03/01/2018 at 13:40.
Pushed by habacker into branch 'Applications/17.12'.

Add additional java test files

A  +5-0   
test/import/java/apackage/subdir/anotherpackage/ApackageSubdirAnotherPackageTest.java
A  +5-0   
test/import/java/apackage/subdir/apackage/ApackageSubdirApackageTest.java

https://commits.kde.org/umbrello/459fe36a6eca91d34becea3ae19fdba3848fbdd8

-- 
You are receiving this mail because:
You are watching all bug changes.

[umbrello] [Bug 386479] Imported classes are not placeable on diagrams after java import

2017-11-12 Thread Ralf Habacker
https://bugs.kde.org/show_bug.cgi?id=386479

Ralf Habacker  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |CONFIRMED

--- Comment #3 from Ralf Habacker  ---
The issues happens inside the namespace hierachy io.bisq.network.p2p.network
and is triggered by having the same part more then one time in the namespace,
which is here 'network'. 

Renaming the namespace to io.bisq.network.p2p.Network before importing is a
workaround until this bug has been fixed.

-- 
You are receiving this mail because:
You are watching all bug changes.

[umbrello] [Bug 386479] Imported classes are not placeable on diagrams after java import

2017-11-11 Thread Ralf Habacker
https://bugs.kde.org/show_bug.cgi?id=386479

--- Comment #2 from Ralf Habacker  ---
Git commit 2ce0c6d8fc96014dde6476a02fe10eecb38fa579 by Ralf Habacker.
Committed on 11/11/2017 at 16:51.
Pushed by habacker into branch 'master'.

Fix endless loop in java import

The endless loop happens on importing

https://github.com/bisq-network/exchange/tree/master/network/src/main/java/io/bisq/network

M  +5-0umbrello/codeimport/javaimport.cpp

https://commits.kde.org/umbrello/2ce0c6d8fc96014dde6476a02fe10eecb38fa579

-- 
You are receiving this mail because:
You are watching all bug changes.

[umbrello] [Bug 386479] Imported classes are not placeable on diagrams after java import

2017-11-11 Thread Ralf Habacker
https://bugs.kde.org/show_bug.cgi?id=386479
Bug 386479 depends on bug 386698, which changed state.

Bug 386698 Summary: Namespace mismatch of types import from java import between 
object and tree view
https://bugs.kde.org/show_bug.cgi?id=386698

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are watching all bug changes.

[umbrello] [Bug 386479] Imported classes are not placeable on diagrams after java import

2017-11-09 Thread Ralf Habacker
https://bugs.kde.org/show_bug.cgi?id=386479

Ralf Habacker  changed:

   What|Removed |Added

 Depends on||386698


Referenced Bugs:

https://bugs.kde.org/show_bug.cgi?id=386698
[Bug 386698] Java import places imports types below "logical view" in tree view
-- 
You are receiving this mail because:
You are watching all bug changes.


[umbrello] [Bug 386479] Imported classes are not placeable on diagrams after java import

2017-11-09 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=386479

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[umbrello] [Bug 386479] Imported classes are not placeable on diagrams after java import

2017-11-07 Thread Ralf Habacker
https://bugs.kde.org/show_bug.cgi?id=386479

--- Comment #1 from Ralf Habacker  ---
Git commit edd187d85cbd92c42a6e4a0ad0a841b2599abfa3 by Ralf Habacker.
Committed on 07/11/2017 at 21:05.
Pushed by habacker into branch 'master'.

Add basic java import test cases
Related: bug 386624

A  +9-0test/import/java/HelloWorld.java
A  +11   -0test/import/java/apackage/AbstractClass.java
A  +11   -0test/import/java/apackage/Base.java
A  +27   -0test/import/java/apackage/Derived.java
A  +6-0test/import/java/apackage/Enum.java
A  +11   -0test/import/java/apackage/Generic.java
A  +5-0test/import/java/apackage/Interface.java
A  +5-0test/import/java/apackage/Type.java
A  +12   -0test/import/java/apackage/UseGeneric.java

https://commits.kde.org/umbrello/edd187d85cbd92c42a6e4a0ad0a841b2599abfa3

-- 
You are receiving this mail because:
You are watching all bug changes.