forked from MagicBane/Server
Project cleanup pre merge.
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
// www.magicbane.com
|
||||
|
||||
|
||||
package engine.objects;
|
||||
package engine.objects;
|
||||
|
||||
import java.sql.ResultSet;
|
||||
import java.sql.SQLException;
|
||||
@@ -15,56 +15,56 @@ import java.sql.SQLException;
|
||||
|
||||
public class SkillsBaseAttribute extends AbstractGameObject {
|
||||
|
||||
private short attributeID;
|
||||
private short modValue;
|
||||
private short attributeID;
|
||||
private short modValue;
|
||||
|
||||
/**
|
||||
* No Table ID Constructor
|
||||
*/
|
||||
public SkillsBaseAttribute(short attributeID, short modValue) {
|
||||
super();
|
||||
/**
|
||||
* No Table ID Constructor
|
||||
*/
|
||||
public SkillsBaseAttribute(short attributeID, short modValue) {
|
||||
super();
|
||||
|
||||
this.attributeID = attributeID;
|
||||
this.modValue = modValue;
|
||||
}
|
||||
this.attributeID = attributeID;
|
||||
this.modValue = modValue;
|
||||
}
|
||||
|
||||
/**
|
||||
* Normal Constructor
|
||||
*/
|
||||
public SkillsBaseAttribute(short attributeID, short modValue, int newUUID) {
|
||||
super(newUUID);
|
||||
/**
|
||||
* Normal Constructor
|
||||
*/
|
||||
public SkillsBaseAttribute(short attributeID, short modValue, int newUUID) {
|
||||
super(newUUID);
|
||||
|
||||
this.attributeID = attributeID;
|
||||
this.modValue = modValue;
|
||||
}
|
||||
this.attributeID = attributeID;
|
||||
this.modValue = modValue;
|
||||
}
|
||||
|
||||
/**
|
||||
* ResultSet Constructor
|
||||
*/
|
||||
public SkillsBaseAttribute(ResultSet rs) throws SQLException {
|
||||
super(rs);
|
||||
/**
|
||||
* ResultSet Constructor
|
||||
*/
|
||||
public SkillsBaseAttribute(ResultSet rs) throws SQLException {
|
||||
super(rs);
|
||||
|
||||
this.attributeID = rs.getShort("attributeID");
|
||||
this.modValue = rs.getShort("modValue");
|
||||
}
|
||||
this.attributeID = rs.getShort("attributeID");
|
||||
this.modValue = rs.getShort("modValue");
|
||||
}
|
||||
|
||||
/*
|
||||
* Getters
|
||||
*/
|
||||
public short getAttributeID() {
|
||||
return attributeID;
|
||||
}
|
||||
/*
|
||||
* Getters
|
||||
*/
|
||||
public short getAttributeID() {
|
||||
return attributeID;
|
||||
}
|
||||
|
||||
public short getModValue() {
|
||||
return modValue;
|
||||
}
|
||||
public short getModValue() {
|
||||
return modValue;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Database
|
||||
*/
|
||||
@Override
|
||||
public void updateDatabase() {
|
||||
// TODO Auto-generated method stub
|
||||
}
|
||||
/*
|
||||
* Database
|
||||
*/
|
||||
@Override
|
||||
public void updateDatabase() {
|
||||
// TODO Auto-generated method stub
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user