Code formating and whitespace cleanup
[jpim.git] / src / de / j32 / pimstuff / data / Attribute.java
1 package de.j32.pimstuff.data;
2
3 public class Attribute
4 {
5     public String type;
6     public String rel;
7     public String value;
8     public int index;
9
10     public Attribute(String type_, String rel_, String value_, int index_)
11     {
12         type = type_;
13         rel = rel_;
14         value = value_;
15         index = index_;
16     }
17 }