12
0

Implementing rank system

Dieser Commit ist enthalten in:
Lixfel 2020-05-12 09:10:24 +02:00
Ursprung abd9815de9
Commit 31629db692

Datei anzeigen

@ -20,6 +20,7 @@ public class Schematic {
private final int schemOwner;
private boolean schemFormat;
private String item;
private int rank;
private SchematicType schemType;
private Schematic(ResultSet rs) throws SQLException {
@ -27,6 +28,7 @@ public class Schematic {
this.schemName = rs.getString("SchemName");
this.schemOwner = rs.getInt("SchemOwner");
this.item = rs.getString("Item");
this.rank = rs.getInt("Rank");
this.schemType = SchematicType.fromDB(rs.getString("SchemType"));
this.schemFormat = rs.getBoolean("SchemFormat");
}
@ -134,6 +136,10 @@ public class Schematic {
return schemOwner;
}
public int getRank(){
return rank;
}
public String getItem() {
return item;
}
@ -143,6 +149,11 @@ public class Schematic {
updateDB();
}
public void setRank(int rank){
this.rank = rank;
SQL.update("UPDATE Schematic SET Rank = ? WHERE SchemID = ?", rank, schemID);
}
public SchematicType getSchemType() {
return schemType;
}