X - Add methods to ContextManager

This commit is contained in:
2026-03-23 15:35:23 +01:00
parent 82d9d4186a
commit 8036892e07
@@ -1,4 +1,11 @@
package com.r35157.nenjim.hubd.ctx;
import com.r35157.nenjim.valuetypes.ctx.ContextId;
import java.util.Set;
public interface ContextManager {
Context getDefault();
Context get(ContextId contextName);
Set<ContextId> getList();
}