diff --git a/src/com/github/miachm/sods/Sheet.java b/src/com/github/miachm/sods/Sheet.java index 23452f1..6aa5248 100644 --- a/src/com/github/miachm/sods/Sheet.java +++ b/src/com/github/miachm/sods/Sheet.java @@ -946,6 +946,14 @@ String getHashedAlgorithm() return this.hash_algorithm; } + /** + * Rename this sheet + * @param newName The new name of the sheet + */ + public void setName(String newName) { + this.name = newName; + } + /** * Equals method, two sheets are considered the same if have the same name and the same content (include formatting) * @param o The object to compare