Add a class visitor that checks for specified immediate parent pattern
[smart-util.git] / simple-util / src / test / java / com / smartitengineering / util / simple / data / TestClass2.java
blobb1d2f8ce9a9d471b903063f1bd74e75e2de31abc
1 /*
2 * This is a utility project for wide range of applications
3 *
4 * Copyright (C) 8 Imran M Yousuf (imyousuf@smartitengineering.com)
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 3 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 10-1 USA
18 package com.smartitengineering.util.simple.data;
20 import java.io.Serializable;
21 import java.util.Comparator;
23 public class TestClass2
24 implements Serializable,
25 Comparable<String>,
26 Cloneable,
27 Comparator<String> {
29 public int compareTo(String o) {
30 throw new UnsupportedOperationException("Not supported yet.");
33 public int compare(String o1,
34 String o2) {
35 throw new UnsupportedOperationException("Not supported yet.");