forked from smx-smx/JavaToCSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavaDoc.cs
More file actions
26 lines (24 loc) · 819 Bytes
/
Copy pathJavaDoc.cs
File metadata and controls
26 lines (24 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
namespace JavaToCSharp.Comments.Syntax
{
internal class JavaDoc
{
public JavaDoc()
{
this.See = new List<String>();
this.Author = new List<String>();
this.Return = new List<String>();
this.Parameters = new List<JavaDocParameter>();
this.Exceptions = new List<String>();
}
public String Summary { get; set; }
public IList<String> See { get; set; }
public IList<String> Author { get; set; }
public IList<String> Return { get; set; }
public IList<JavaDocParameter> Parameters { get; set; }
public IList<String> Exceptions { get; set; }
public String Depricated { get; set; }
public String Since { get; set; }
}
}