Project cleanup pre merge.
This commit is contained in:
@@ -15,63 +15,54 @@ import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
|
||||
|
||||
public class GuildCondemn {
|
||||
|
||||
public static HashMap<Integer, ArrayList<GuildCondemn>> GetCondemnedFromGuildID = new HashMap<>();
|
||||
private int ID;
|
||||
private int playerUID;
|
||||
private int parentGuildUID;
|
||||
private int guildUID;
|
||||
private int friendType;
|
||||
|
||||
|
||||
public class GuildCondemn {
|
||||
|
||||
private int ID;
|
||||
private int playerUID;
|
||||
private int parentGuildUID;
|
||||
private int guildUID;
|
||||
private int friendType;
|
||||
public static HashMap<Integer,ArrayList<GuildCondemn>> GetCondemnedFromGuildID = new HashMap<>();
|
||||
/**
|
||||
* ResultSet Constructor
|
||||
*/
|
||||
public GuildCondemn(ResultSet rs) throws SQLException {
|
||||
this.playerUID = rs.getInt("playerUID");
|
||||
this.parentGuildUID = rs.getInt("buildingUID");
|
||||
this.guildUID = rs.getInt("guildUID");
|
||||
this.friendType = rs.getInt("friendType");
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* ResultSet Constructor
|
||||
*/
|
||||
public GuildCondemn(ResultSet rs) throws SQLException {
|
||||
this.playerUID = rs.getInt("playerUID");
|
||||
this.parentGuildUID = rs.getInt("buildingUID");
|
||||
this.guildUID = rs.getInt("guildUID");
|
||||
this.friendType = rs.getInt("friendType");
|
||||
}
|
||||
|
||||
|
||||
public GuildCondemn(int playerUID, int parentGuildUID, int guildUID, int friendType) {
|
||||
super();
|
||||
this.playerUID = playerUID;
|
||||
this.parentGuildUID = parentGuildUID;
|
||||
this.guildUID = guildUID;
|
||||
this.friendType = friendType;
|
||||
}
|
||||
|
||||
|
||||
public GuildCondemn(int playerUID, int parentGuildUID, int guildUID, int friendType) {
|
||||
super();
|
||||
this.playerUID = playerUID;
|
||||
this.parentGuildUID = parentGuildUID;
|
||||
this.guildUID = guildUID;
|
||||
this.friendType = friendType;
|
||||
}
|
||||
public int getPlayerUID() {
|
||||
return playerUID;
|
||||
}
|
||||
|
||||
|
||||
public int getParentGuildUID() {
|
||||
return parentGuildUID;
|
||||
}
|
||||
|
||||
|
||||
public int getPlayerUID() {
|
||||
return playerUID;
|
||||
}
|
||||
public int getGuildUID() {
|
||||
return guildUID;
|
||||
}
|
||||
|
||||
|
||||
public int getParentGuildUID() {
|
||||
return parentGuildUID;
|
||||
}
|
||||
public int getFriendType() {
|
||||
return friendType;
|
||||
}
|
||||
|
||||
|
||||
public int getGuildUID() {
|
||||
return guildUID;
|
||||
}
|
||||
|
||||
|
||||
public int getFriendType() {
|
||||
return friendType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user