01: package com.db.geometry.updater; 02: 03: /** 04: * 05: * @author Michael Nischt - zero@monoid.net 06: */ 07: public interface VertexUpdater { 08: 09: public void updateVertex(int index, Vertex vertex); 10: 11: }