[Activity]Partition through different Swimlane

0 votes
asked Dec 16, 2024 in Question / help by kasra (1,080 points)

Hi,

How to Partition through different Swimlane in activity diagram ?

example : 

https://www.plantuml.com/plantuml/duml/ut8eBaaiAYdDpL7Wgl5BhIY9TqmkoI-guG8BSnK0YSoIpFmy1GIhcaiv9pCzeoGffpJLAYq_tzYQ2qIPM7FLk6Nc9UR0J50kICn9JIzAJSq3IPjQSzK23Sqlu798pKi1siS50000

for some reason it duplicates the partition, why ? 

this thread "Partition through different Swimlane" is similar : https://forum.plantuml.net/12101/partition-through-different-swimlane?show=12101#q12101

but no answer since 2022.

Thanks.

1 Answer

–1 vote
answered Jan 7, 2025 by anonymous
erDiagram
    VOTER {
        int voter_id PK
        string name
        string email
        string password_hash
        string biometric_data
        bool is_verified
    }

    ELECTION {
        int election_id PK
        string election_name
        date start_date
        date end_date
        string status
    }

    CANDIDATE {
        int candidate_id PK
        string name
        string party
        int election_id FK
    }

    VOTE {
        int vote_id PK
        int voter_id FK
        int candidate_id FK
        int election_id FK
        datetime vote_time
        string encrypted_vote
    }

    VOTER ||--o{ VOTE : casts
    ELECTION ||--o{ VOTE : has
    CANDIDATE ||--o{ VOTE : receives
    ELECTION ||--o{ CANDIDATE : includes
commented Jan 7, 2025 by kasra (1,080 points)
Hi,

what are you trying to say?

Kasra
...