aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1810/490315/SomePropertyDTO.java
blob: 0f2a835fc126bb5531b780cd60a98a108f56ef73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package test;

import java.io.Serializable;

public class SomePropertyDTO implements Serializable, Comparable<SomePropertyDTO> {

	/* (non-Javadoc)
	 * @see java.lang.Comparable#compareTo(java.lang.Object)
	 */
	@Override
	public int compareTo(SomePropertyDTO o)
	{
		// TODO Auto-generated method stub
		return 0;
	}
	
}