- Implemented `setLevel(Level)` and `getLevel()`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-02 11:09:45 +02:00
parent 70dc9c0449
commit 20dc3c0058
1 changed files with 10 additions and 0 deletions

View File

@ -33,6 +33,16 @@ public class Context
{
return lineInfo;
}
public final Level getLevel()
{
return level;
}
public final void setLevel(Level level)
{
this.level = level;
}
}
/**