com.antiaction.raptor.dao.AttributeOption Maven / Gradle / Ivy
/*
* Created on 03/08/2010
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package com.antiaction.raptor.dao;
public class AttributeOption {
public int id;
public String name;
public static AttributeOption instance(int id, String name) {
AttributeOption option = new AttributeOption();
option.id = id;
option.name = name;
return option;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy