mirror of
https://github.com/zaaarf/lillero.git
synced 2024-11-12 18:49:23 +01:00
feat: added setModifier method to proxy builder
This commit is contained in:
parent
de6cd06871
commit
65d732c079
1 changed files with 9 additions and 0 deletions
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue