Project cleanup pre merge.
This commit is contained in:
@@ -15,62 +15,59 @@ import java.sql.SQLException;
|
||||
|
||||
public class EffectsResourceCosts extends AbstractGameObject {
|
||||
|
||||
private String IDString;
|
||||
private int resourceID;
|
||||
private int amount;
|
||||
private int UID;
|
||||
private String IDString;
|
||||
private int resourceID;
|
||||
private int amount;
|
||||
private int UID;
|
||||
|
||||
/**
|
||||
* No Table ID Constructor
|
||||
*/
|
||||
public EffectsResourceCosts() {
|
||||
/**
|
||||
* No Table ID Constructor
|
||||
*/
|
||||
public EffectsResourceCosts() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* ResultSet Constructor
|
||||
*/
|
||||
public EffectsResourceCosts(ResultSet rs) throws SQLException {
|
||||
/**
|
||||
* ResultSet Constructor
|
||||
*/
|
||||
public EffectsResourceCosts(ResultSet rs) throws SQLException {
|
||||
|
||||
this.UID = rs.getInt("UID");
|
||||
this.IDString = rs.getString("IDString");
|
||||
this.resourceID = rs.getInt("resource");
|
||||
this.amount = rs.getInt("amount");
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getIDString() {
|
||||
return this.IDString;
|
||||
}
|
||||
this.UID = rs.getInt("UID");
|
||||
this.IDString = rs.getString("IDString");
|
||||
this.resourceID = rs.getInt("resource");
|
||||
this.amount = rs.getInt("amount");
|
||||
}
|
||||
|
||||
|
||||
|
||||
public int getAmount() {
|
||||
return this.amount;
|
||||
}
|
||||
public String getIDString() {
|
||||
return this.IDString;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public int getResourceID() {
|
||||
return resourceID;
|
||||
}
|
||||
public int getAmount() {
|
||||
return this.amount;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void removeFromCache() {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateDatabase() {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
public int getResourceID() {
|
||||
return resourceID;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void removeFromCache() {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateDatabase() {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
public int getUID() {
|
||||
return UID;
|
||||
}
|
||||
|
||||
public int getUID() {
|
||||
return UID;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user