package org.simantics.db.impl.query; class UpdateEntry { public CacheEntry caller; public CacheEntry entry; public int indent; public UpdateEntry(CacheEntry caller, CacheEntry entry, int indent) { this.caller = caller; this.entry = entry; this.indent = indent; } }