12
0

Implementing rank system #50

Manuell gemergt
Lixfel hat 1 Commits von implementRanks nach master 2020-05-21 21:26:33 +02:00 zusammengeführt

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;
}