Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/guilds/GuildPart.java

30 lines
520 B
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.habbohotel.guilds;
import java.sql.ResultSet;
import java.sql.SQLException;
public class GuildPart
{
/**
* Identifier.
*/
public final int id;
/**
* Part A
*/
public final String valueA;
/**
* Part B
*/
public final String valueB;
public GuildPart(ResultSet set) throws SQLException
{
this.id = set.getInt("id");
this.valueA = set.getString("firstvalue");
this.valueB = set.getString("secondvalue");
}
}