/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.dhaval.meta.extractor;

import com.dhaval.meta.MetaField;
import com.dhaval.meta.MetaType;

/**
 *
 * @author dhaval
 */
public class Test {

    @MetaField(name="name", displayName="TEST_NAME")
    private String name;

    @MetaField(name="id", displayName="TEST_ID")
    private int id;

    @MetaType(name="Test")
    private TestSet testSet;
}
