use new file filter
[jalview.git] / src / jalview / io / FormatProperty.java
1 package jalview.io;\r
2 \r
3 public class FormatProperty {\r
4   String description;\r
5   String className;\r
6 \r
7   public FormatProperty(String description, String className) {\r
8     this.description = new String(description);\r
9     this.className   = new String(className);\r
10   }\r
11 \r
12   public String getClassName() {\r
13     return className;\r
14   }\r
15   public String getDescription() {\r
16     return description;\r
17   }\r
18 }\r