feat: added setModifier method to proxy builder

This commit is contained in:
zaaarf 2023-03-01 20:29:29 +01:00
parent de6cd06871
commit 65d732c079
No known key found for this signature in database
GPG key ID: 82240E075E31FA4C

View file

@ -111,6 +111,15 @@ public abstract class AbstractProxy {
return this;
}
/**
* @param newModifier the new modifier value
* @return the current state of the builder
*/
public Builder<T> setModifier(int newModifier) {
this.modifiers = newModifier;
return this;
}
/**
* @return the built proxy object
*/