Click here to Skip to main content
15,888,984 members
Articles / Desktop Programming / WPF

PlantUML Editor: A Fast and Simple UML Editor using WPF

Rate me:
Please Sign up or sign in to vote.
4.98/5 (65 votes)
11 Jun 2011CPOL16 min read 237.4K   6.4K   233  
A WPF smart client to generate UML diagrams from plain text using plantuml tool
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;

namespace PlantUmlEditor.Model
{
    public class DiagramFile
    {
        public string DiagramFilePath { get; set; }
        public string ImageFilePath { get; set; }
        public string Content { get; set; }

        public string Preview
        {
            get
            {
                // Ignore first @startuml line and select non-empty lines
                return Content.Length > 100 ? Content.Substring(0, 100) : Content;
            }
        }

        public string DiagramFileNameOnly
        {
            get
            {
                return Path.GetFileName(this.DiagramFilePath);
            }
        }

        public string ImageFileNameOnly
        {
            get
            {
                return Path.GetFileName(this.ImageFilePath);
            }
        }

        public override bool Equals(object obj)
        {
            var diagram = obj as DiagramFile;
            return diagram.DiagramFilePath == this.DiagramFilePath;
        }

        public override int GetHashCode()
        {
            return this.DiagramFilePath.GetHashCode();
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect BT, UK (ex British Telecom)
United Kingdom United Kingdom

Comments and Discussions