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

24 lines
428 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
{
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
public final int id;
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
public final String valueA;
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
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");
}
}