aboutsummaryrefslogtreecommitdiffstats
path: root/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/60480acce38d001a12adc74468436fd9
stat options
Period:
Authors:

Commits per author per week (path 'Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/60480acce38d001a12adc74468436fd9')

AuthorW26 2026W27 2026W28 2026W29 2026Total
Total00000
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media.Imaging;

namespace Tango.Scripting.Editors.Intellisense
{
    public class InterfaceCompletionItem : CompletionItem
    {
        private static BitmapSource image = GetImage("interface.png");

        public override string Text => Name;
        public override CompletionItemPopupControl PopupControl => new InterfaceCompletionItemPopup();
        public override BitmapSource Image => image;

        public String Name { get; set; }
        public String Namespace { get; set; }
    }
}