From 87ba6ec4a734357add3916ad0ec3b0913497701a Mon Sep 17 00:00:00 2001 From: Thorsten Vitt <thorsten.vitt@uni-wuerzburg.de> Date: Thu, 2 Aug 2012 16:30:27 +0000 Subject: [PATCH] Added header stack skeleton git-svn-id: https://develop.sub.uni-goettingen.de/repos/textgrid/trunk/services/aggregator@13447 7c539038-3410-0410-b1ec-0f2a7bf1c452 --- .../services/aggregator/TEIHeaderStack.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/main/java/info/textgrid/services/aggregator/TEIHeaderStack.java diff --git a/src/main/java/info/textgrid/services/aggregator/TEIHeaderStack.java b/src/main/java/info/textgrid/services/aggregator/TEIHeaderStack.java new file mode 100644 index 0000000..ef13e3f --- /dev/null +++ b/src/main/java/info/textgrid/services/aggregator/TEIHeaderStack.java @@ -0,0 +1,16 @@ +package info.textgrid.services.aggregator; + +/** + * Generates headers for every possible TEIcorpus level. + * + * Clients initially create a new TEIHeaderStack for the root instance. This + * class will then prepare a path request and initialize the stack. Clients can + * afterwards push() new objects onto the stack while they descend into the hierarchy, + * generate a header for the current stack, and pop() objects afterwards. + * + */ +public class TEIHeaderStack { + + + +} -- GitLab